OpenIdCredentials.fromJson constructor

OpenIdCredentials.fromJson(
  1. Map<String, Object?> json
)

Implementation

OpenIdCredentials.fromJson(Map<String, Object?> json)
    : accessToken = json['access_token'] as String,
      expiresIn = json['expires_in'] as int,
      matrixServerName = json['matrix_server_name'] as String,
      tokenType = json['token_type'] as String;