SocialSignInPageDesktop constructor

const SocialSignInPageDesktop({
  1. Key? key,
  2. required String url,
  3. required String redirectUrl,
  4. required String? onPageFinished(
    1. String
    ),
  5. String? userAgent,
  6. String title = "",
  7. bool? centerTitle,
  8. String loadingLabel = "",
})

Implementation

const SocialSignInPageDesktop({
  Key? key,
  required this.url,
  required this.redirectUrl,
  required this.onPageFinished,
  this.userAgent,
  this.title = "",
  this.centerTitle,
  this.loadingLabel = "",
}) : super(key: key);