WalletFeatureSendSuccess constructor

WalletFeatureSendSuccess({
  1. required String network,
  2. required String sendToken,
  3. required String sendAmount,
  4. required String hash,
})

Implementation

WalletFeatureSendSuccess({
  required String network,
  required String sendToken,
  required String sendAmount,
  required String hash,
}) : _network = network,
     _sendToken = sendToken,
     _sendAmount = sendAmount,
     _hash = hash;