AccountSet.fromJson constructor

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

Implementation

AccountSet.fromJson(Map<String, dynamic> json)
    : domain = json["domain"],
      emailHash = json["email_hash"],
      messageKey = json["message_key"],
      transferRate = json["transfer_rate"],
      tickSize = json["tick_size"],
      nftTokenMinter = json["nftoken_minter"],
      clearFlag = AccountSetAsfFlag.fromValue(json["clear_flag"]),
      setFlag = AccountSetAsfFlag.fromValue(json["set_flag"]),
      super.json(json);