signIn method

void signIn(
  1. BuildContext context
)
inherited

Implementation

void signIn(BuildContext context) {
  final ctrl = AuthController.ofType<OAuthController>(context);
  final targetPlatform = Theme.of(context).platform;
  ctrl.signInWithProvider(targetPlatform);
}