AuthConfig_GoogleServiceAccountConfig.fromJson constructor

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

Implementation

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