DeployedIndexAuthConfig_AuthProvider.fromJson constructor

DeployedIndexAuthConfig_AuthProvider.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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