OAuthFlow.authorizationCode constructor

const OAuthFlow.authorizationCode({
  1. required String authorizationUrl,
  2. required String tokenUrl,
  3. String? refreshUrl,
  4. required Map<String, String> scopes,
})

Implementation

const factory OAuthFlow.authorizationCode({
  required String authorizationUrl,
  required String tokenUrl,
  String? refreshUrl,
  required Map<String, String> scopes,
}) = _OAuthFlowAuthorizationCode;