showConnectSheet static method
Future<void>
showConnectSheet(
- BuildContext context, {
- bool showAsBottomSheet = true,
- String title = 'Connect tester',
- String subtitle = 'Enter the 6-digit Connect Code from your invite.',
- bool allowDismiss = true,
Implementation
static Future<void> showConnectSheet(
BuildContext context, {
bool showAsBottomSheet = true,
String title = 'Connect tester',
String subtitle = 'Enter the 6-digit Connect Code from your invite.',
bool allowDismiss = true,
}) => MyAppCrewFlutter.showConnectSheet(
context,
showAsBottomSheet: showAsBottomSheet,
title: title,
subtitle: subtitle,
allowDismiss: allowDismiss,
);