copyWith method
Implementation
DeviceDealerOrgV2 copyWith(
{int? id,
String? dealerId,
String? companyName,
List<String>? adminEmails}) {
return DeviceDealerOrgV2(
id: id ?? this.id,
dealerId: dealerId ?? this.dealerId,
companyName: companyName ?? this.companyName,
adminEmails: adminEmails ?? this.adminEmails);
}