ChainProperties.fromJson constructor

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

Implementation

factory ChainProperties.fromJson(Map<String, dynamic> json) =>
    ChainProperties(
      accountCreationFee: json["account_creation_fee"],
      accountSubsidyBudget: json["account_subsidy_budget"],
      accountSubsidyDecay: json["account_subsidy_decay"],
      hbdInterestRate: json["hbd_interest_rate"],
      maximumBlockSize: json["maximum_block_size"],
    );