IssuerListResponse.fromJson constructor

IssuerListResponse.fromJson(
  1. Map json_
)

Implementation

IssuerListResponse.fromJson(core.Map json_)
    : this(
        resources: json_.containsKey('resources')
            ? (json_['resources'] as core.List)
                .map((value) => Issuer.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );