copyWith method

Implementation

WebApiModulesInventoryRepairRepairReleaseItemsResponse copyWith(
    {WebApiModulesInventoryRepairRepair? repair,
    int? status,
    bool? success,
    String? msg}) {
  return WebApiModulesInventoryRepairRepairReleaseItemsResponse(
      repair: repair ?? this.repair,
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg);
}