copyWith method
Implementation
WebApiModulesInventoryContainerItemEmptyContainerItemResponse copyWith({
String? inContractId,
int? status,
bool? success,
String? msg,
}) {
return WebApiModulesInventoryContainerItemEmptyContainerItemResponse(
inContractId: inContractId ?? this.inContractId,
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
);
}