copyWith method
Implementation
ShopifySharpOrderCompany copyWith({int? id, int? locationId}) {
return ShopifySharpOrderCompany(
id: id ?? this.id,
locationId: locationId ?? this.locationId,
);
}
ShopifySharpOrderCompany copyWith({int? id, int? locationId}) {
return ShopifySharpOrderCompany(
id: id ?? this.id,
locationId: locationId ?? this.locationId,
);
}