FlyoutContent constructor

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

Implementation

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