GumdropConfigData.fromJson constructor

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

Implementation

factory GumdropConfigData.fromJson(Map<String, dynamic> json) {
  return GumdropConfigData(
      uuid: json["uuid"],
      symbol: json["symbol"],
      sellerFeeBasisPoints: json["sellerFeeBasisPoints"],
      creators:
          (json["creators"] as List).map((e) => Creator.fromJson(e)).toList(),
      maxSupply: json["maxSupply"],
      isMutable: json["isMutable"],
      retainAuthority: json["retainAuthority"],
      maxNumberOfLines: json["maxNumberOfLines"]);
}