copyWith method

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

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