TransferFeeAmount.fromAccountBytes constructor

TransferFeeAmount.fromAccountBytes(
  1. List<int> accountBytes
)

Implementation

factory TransferFeeAmount.fromAccountBytes(List<int> accountBytes) {
  final decode = _Utils.decodeFromAccount(accountBytes);
  return TransferFeeAmount(withheldAmount: decode["withheldAmount"]);
}