copyWith method

Implementation

WebApiModulesTransfersTransferOrderToggleTransferOrderResponse copyWith(
    {WebApiModulesTransfersTransferOrderTransferOrder? transfer,
    int? status,
    bool? success,
    String? msg}) {
  return WebApiModulesTransfersTransferOrderToggleTransferOrderResponse(
      transfer: transfer ?? this.transfer,
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg);
}