copyWith method

ShopifySharpOrderCompany copyWith({
  1. int? id,
  2. int? locationId,
})

Implementation

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