FlutterUXBlur constructor

FlutterUXBlur({
  1. int blurRadius = 10,
  2. BlurType blurType = BlurType.gaussian,
  3. bool hideGestures = true,
  4. List<String> screens = const [],
  5. bool excludeMentionedScreens = false,
})

Implementation

FlutterUXBlur(
    {int blurRadius = 10,
    BlurType blurType = BlurType.gaussian,
    bool hideGestures = true,
    List<String> screens = const [],
    bool excludeMentionedScreens = false})
    : super(screens, excludeMentionedScreens) {
  this.blurRadius = blurRadius;
  this.blurType = blurType;
  this.hideGestures = hideGestures;
}