OAuthCredentials constructor

OAuthCredentials({
  1. required String url,
  2. required String clientId,
  3. required String clientSecret,
  4. required String code,
})

Implementation

OAuthCredentials(
    {required this.url,
    required this.clientId,
    required this.clientSecret,
    required this.code});