DeployedIndexAuthConfig_AuthProvider.fromJson constructor
Implementation
factory DeployedIndexAuthConfig_AuthProvider.fromJson(
Map<String, dynamic> json,
) {
return DeployedIndexAuthConfig_AuthProvider(
audiences: decodeList(json['audiences']) ?? [],
allowedIssuers: decodeList(json['allowedIssuers']) ?? [],
);
}