copyWith method

WebApiModulesHomeControlsContainerItemEmptyContainerItemResponse copyWith({
  1. String? inContractId,
  2. int? status,
  3. bool? success,
  4. String? msg,
})

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);
}