FlyoutContent constructor

const FlyoutContent({
  1. Key? key,
  2. required Widget child,
  3. BoxDecoration? decoration,
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(12.0),
  5. Color? shadowColor,
  6. double elevation = 8,
})

Implementation

const FlyoutContent({
  Key? key,
  required this.child,
  this.decoration,
  this.padding = const EdgeInsets.all(12.0),
  this.shadowColor,
  this.elevation = 8,
}) : super(key: key);