DocumentFlowAppearanceConfiguration constructor

DocumentFlowAppearanceConfiguration({
  1. StatusBarMode statusBarMode = StatusBarMode.LIGHT,
  2. NavigationBarMode navigationBarMode = NavigationBarMode.LIGHT,
  3. ScanbotColor? topBarBackgroundColor,
  4. ScanbotColor? bottomBarBackgroundColor,
  5. OrientationLockMode orientationLockMode = OrientationLockMode.NONE,
})

Implementation

DocumentFlowAppearanceConfiguration({
  this.statusBarMode = StatusBarMode.LIGHT,
  this.navigationBarMode = NavigationBarMode.LIGHT,
  ScanbotColor? topBarBackgroundColor,
  ScanbotColor? bottomBarBackgroundColor,
  this.orientationLockMode = OrientationLockMode.NONE,
})  : topBarBackgroundColor =
          topBarBackgroundColor ?? ScanbotColor("?sbColorPrimary"),
      bottomBarBackgroundColor =
          bottomBarBackgroundColor ?? ScanbotColor("?sbColorPrimary");