TransferInquiry constructor

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

Implementation

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