PersistentWidget constructor

const PersistentWidget({
  1. required Widget child,
  2. AlignmentGeometry alignment = Alignment.topRight,
  3. bool showInWeb = true,
  4. bool showInTablet = false,
  5. bool showInMobile = false,
})

Implementation

const PersistentWidget({
  required this.child,
  this.alignment = Alignment.topRight,
  this.showInWeb = true,
  this.showInTablet = false,
  this.showInMobile = false,
});