AuthConfig_HttpBasicAuthConfig.fromJson constructor

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

Implementation

factory AuthConfig_HttpBasicAuthConfig.fromJson(Map<String, dynamic> json) {
  return AuthConfig_HttpBasicAuthConfig(
    credentialSecret: json['credentialSecret'] ?? '',
  );
}