RevokedAuthenticationScope.fromJson constructor
Implementation
factory RevokedAuthenticationScope.fromJson(
Map<String, dynamic> jsonSerialization) {
return RevokedAuthenticationScope(
scopes: (jsonSerialization['scopes'] as List)
.map((e) => e as String)
.toList());
}