copyWith method

Implementation

WebApiModulesUtilitiesMigrateCompleteMigrateSessionResponse copyWith(
    {int? status,
    bool? success,
    String? msg,
    String? contractIds,
    List<WebApiModulesWarehouseContractContract>? contracts}) {
  return WebApiModulesUtilitiesMigrateCompleteMigrateSessionResponse(
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg,
      contractIds: contractIds ?? this.contractIds,
      contracts: contracts ?? this.contracts);
}