copyWith method

WebApiModulesInventoryRentalInventoryAddRemoveWallResponse copyWith({
  1. bool? isQuantity,
  2. int? status,
  3. String? message,
})

Implementation

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