OAuthWebViewScreen constructor

const OAuthWebViewScreen({
  1. Key? key,
  2. required String platform,
  3. required String authUrl,
  4. required String callbackUrlPattern,
  5. dynamic onComplete(
    1. bool success
    )?,
  6. String? username,
  7. bool isGmail = false,
})

Implementation

const OAuthWebViewScreen({
  Key? key,
  required this.platform,
  required this.authUrl,
  required this.callbackUrlPattern,
  this.onComplete,
  this.username,
  this.isGmail = false,
}) : super(key: key);