OAuthCredentials constructor Null safety

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

Implementation

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