AllowListProofAccount.fromBuffer constructor

AllowListProofAccount.fromBuffer(
  1. List<int> data
)

Implementation

factory AllowListProofAccount.fromBuffer(List<int> data) {
  final decode =
      LayoutSerializable.decode(bytes: data, layout: _Utils.layout);
  return AllowListProofAccount(timestamp: decode["timestamp"]);
}