TransferHookAccount.fromAccountBytes constructor

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

Implementation

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