AuthProvider.fromJson constructor
Implementation
factory AuthProvider.fromJson(Map<String, dynamic> json) {
return AuthProvider(
id: json['id'] ?? '',
issuer: json['issuer'] ?? '',
jwksUri: json['jwksUri'] ?? '',
audiences: json['audiences'] ?? '',
authorizationUrl: json['authorizationUrl'] ?? '',
jwtLocations:
decodeListMessage(json['jwtLocations'], JwtLocation.fromJson) ?? [],
);
}