ApiGetAddressResponseResult.fromJson constructor

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

Implementation

factory ApiGetAddressResponseResult.fromJson(Map<String, dynamic> json) =>
    ApiGetAddressResponseResult(
      address: json["address"],
      balance: json["balance"],
      stake: json["stake"],
      txCount: json["txCount"],
      flipsCount: json["flipsCount"],
      reportedFlipsCount: json["reportedFlipsCount"],
    );