copyWith method

Implementation

WebApiModulesInventoryInventoryReceiptSyncItemsResponse copyWith(
    {int? status, String? message}) {
  return WebApiModulesInventoryInventoryReceiptSyncItemsResponse(
      status: status ?? this.status, message: message ?? this.message);
}