copyWith method

Implementation

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