StandardOverlayFlow constructor

const StandardOverlayFlow({
  1. Key? key,
  2. required Map<String, dynamic> data,
  3. required String appName,
  4. required dynamic onResolved(
    1. String apiUrl,
    2. String accessToken,
    3. Map<String, dynamic> loginDetails
    ),
  5. bool darkMode = false,
  6. bool testShowDataRequests = true,
  7. String testModeType = 'universal_onboarding',
})

Implementation

const StandardOverlayFlow({
  Key? key,
  required this.data,
  required this.appName,
  required this.onResolved,
  this.darkMode = false,
  this.testShowDataRequests = true, // Default to showing data requests for now
  this.testModeType = 'universal_onboarding', // Default to universal onboarding test mode
}) : super(key: key);