copyWith method

TransferInquiry copyWith({
  1. String? from,
  2. String? to,
})

Implementation

TransferInquiry copyWith({  String? from,
  String? to,
}) => TransferInquiry(  from: from ?? _from,
  to: to ?? _to,
);