AccountsAuthInfoResponse.fromJson constructor
AccountsAuthInfoResponse.fromJson(
- 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?,
);