WIP constructor

const WIP({
  1. Key? key,
  2. required Widget child,
  3. BannerLocation location = BannerLocation.topEnd,
  4. Color? color,
  5. TextStyle? textStyle,
  6. Color? backgroundColor,
  7. bool visible = false,
  8. String? message,
})

Implementation

const WIP({
  super.key,
  required Widget super.child,
  this.location = BannerLocation.topEnd,
  this.color,
  this.textStyle,
  this.backgroundColor,
  this.visible = false,
  this.message,
});