FloatwingContainer constructor

const FloatwingContainer({
  1. Key? key,
  2. Widget? child,
  3. WidgetBuilder? builder,
  4. bool debug = false,
  5. bool app = false,
})

Implementation

const FloatwingContainer({
  Key? key,
  this.child,
  this.builder,
  this.debug = false,
  this.app = false,
})  : assert(child != null || builder != null),
      super(key: key);