Popover constructor

Popover({
  1. required Object trigger,
  2. Object? child,
  3. List<Object?> children = const [],
  4. bool open = false,
  5. String placement = 'bottom',
  6. String? className,
  7. Map<String, Object?> props = const {},
  8. Map<String, Object?> style = const {},
  9. DartStyle? dartStyle,
})

Creates a popover controlled by open.

Implementation

Popover({
  required this.trigger,
  this.child,
  this.children = const [],
  this.open = false,
  this.placement = 'bottom',
  this.className,
  this.props = const {},
  this.style = const {},
  this.dartStyle,
});