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