AccessTokenV2 constructor

AccessTokenV2(
  1. Map<String, dynamic> params
)

Implementation

AccessTokenV2(Map<String, dynamic> params)
    : this.tokenType = params.get<String>('token_type'),
      this.expiresIn = params.get<int>('expires_in'),
      this.accessToken = params.get<String>('access_token'),
      this.scope = params.get<String>('scope');