GitLabProviderOptions constructor

const GitLabProviderOptions({
  1. required String clientId,
  2. required String clientSecret,
  3. required String redirectUri,
  4. String? baseUrl,
  5. List<String> scopes = const ['read_user'],
})

Creates a new GitLabProviderOptions configuration.

Implementation

const GitLabProviderOptions({
  required this.clientId,
  required this.clientSecret,
  required this.redirectUri,
  this.baseUrl,
  this.scopes = const ['read_user'],
});