GoogleSigninWidget constructor

GoogleSigninWidget({
  1. required dynamic onSessionSuccess(
    1. ThirdPartySessionModel?
    ),
  2. required dynamic onSessionError(
    1. int
    ),
  3. required dynamic onReset(),
  4. dynamic onDisplay(
    1. String
    )?,
  5. bool available = true,
  6. required String btnText,
  7. Color? loadingColor,
  8. Key? key,
})

Implementation

GoogleSigninWidget({
  required this.onSessionSuccess,
  required this.onSessionError,
  required this.onReset,
  this.onDisplay,
  this.available = true,
  required this.btnText,
  this.loadingColor,
  super.key});