AllowList.fromJson constructor

AllowList.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AllowList.fromJson(Map<String, dynamic> json) {
  return AllowList(merkleRoot: (json["merkleRoot"] as List).cast());
}