showConnectSheet static method

Future<void> showConnectSheet(
  1. BuildContext context, {
  2. bool showAsBottomSheet = true,
  3. String title = 'Connect tester',
  4. String subtitle = 'Enter the 6-digit Connect Code from your invite.',
  5. 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,
);