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