DeployedIndexAuthConfig.fromJson constructor

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

Implementation

factory DeployedIndexAuthConfig.fromJson(Map<String, dynamic> json) {
  return DeployedIndexAuthConfig(
    authProvider: decode(
      json['authProvider'],
      DeployedIndexAuthConfig_AuthProvider.fromJson,
    ),
  );
}