AccountsAuthInfoResponse.fromJson constructor

AccountsAuthInfoResponse.fromJson(
  1. Map json_
)

Implementation

AccountsAuthInfoResponse.fromJson(core.Map json_)
    : this(
        accountIdentifiers: (json_['accountIdentifiers'] as core.List?)
            ?.map((value) => AccountIdentifier.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        kind: json_['kind'] as core.String?,
      );