MaskForCameraViewStyle constructor

MaskForCameraViewStyle({
  1. Color appBarColor = Colors.black,
  2. TextStyle titleStyle = const TextStyle(color: Colors.white, fontSize: 18.0, fontWeight: FontWeight.w600),
  3. Color boxBorderColor = Colors.white,
  4. Color bottomBarColor = Colors.black,
  5. Color takeButtonColor = Colors.white,
  6. Color takeButtonActionColor = Colors.black,
  7. Color iconsColor = Colors.white,
})

Implementation

MaskForCameraViewStyle({
  this.appBarColor = Colors.black,
  this.titleStyle = const TextStyle(
    color: Colors.white,
    fontSize: 18.0,
    fontWeight: FontWeight.w600,
  ),
  this.boxBorderColor = Colors.white,
  this.bottomBarColor = Colors.black,
  this.takeButtonColor = Colors.white,
  this.takeButtonActionColor = Colors.black,
  this.iconsColor = Colors.white,
});