RevokedAuthenticationScope.fromJson constructor

RevokedAuthenticationScope.fromJson(
  1. Map<String, dynamic> jsonSerialization
)

Implementation

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