OAuthApplicationWithSecret constructor
OAuthApplicationWithSecret({
- required OAuthApplicationWithSecretObjectEnum object,
- required String id,
- required String instanceId,
- required String name,
- required String clientId,
- required bool public,
- required String scopes,
- List<
String> redirectUris = const [], - required String callbackUrl,
- required String authorizeUrl,
- required String tokenFetchUrl,
- required String userInfoUrl,
- required String discoveryUrl,
- required String tokenIntrospectionUrl,
- required int createdAt,
- required int updatedAt,
- String? clientSecret,
Returns a new OAuthApplicationWithSecret instance.
Implementation
OAuthApplicationWithSecret({
required this.object,
required this.id,
required this.instanceId,
required this.name,
required this.clientId,
required this.public,
required this.scopes,
this.redirectUris = const [],
required this.callbackUrl,
required this.authorizeUrl,
required this.tokenFetchUrl,
required this.userInfoUrl,
required this.discoveryUrl,
required this.tokenIntrospectionUrl,
required this.createdAt,
required this.updatedAt,
this.clientSecret,
});