UnFreezeMsg constructor

UnFreezeMsg({
  1. String? symbol,
  2. Decimal? amount,
  3. Wallet? wallet,
})

Implementation

UnFreezeMsg({String? symbol, Decimal? amount, Wallet? wallet}) : super([wallet]) {
  _symbol = symbol;
  _amount = amount;
  _amount_encoded = (_amount! * Decimal.fromInt(10.pow(8))).toInt();
}