QueryAuthProvidersResponse.fromJson constructor
QueryAuthProvidersResponse.fromJson(
- Map json_
Implementation
QueryAuthProvidersResponse.fromJson(core.Map json_)
: this(
authProviderNames: (json_['authProviderNames'] as core.List?)
?.map((value) => value as core.String)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);