IssuedCurrency.fromJson constructor

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

Creates an instance of IssuedCurrency from JSON data.

The json parameter represents the JSON data to parse.

Implementation

IssuedCurrency.fromJson(Map<String, dynamic> json)
    : currency = json["currency"],
      issuer = json["issuer"];