BubbleGroup constructor

const BubbleGroup({
  1. required List<BubbleNavItem> items,
  2. Color? backgroundColor,
  3. BorderRadiusGeometry? borderRadius,
  4. EdgeInsetsGeometry padding = const EdgeInsets.all(4.0),
  5. EdgeInsetsGeometry margin = const EdgeInsets.symmetric(horizontal: 6.0),
  6. List<BoxShadow>? shadows,
})

Implementation

const BubbleGroup({
  required this.items,
  this.backgroundColor,
  this.borderRadius,
  this.padding = const EdgeInsets.all(4.0),
  this.margin = const EdgeInsets.symmetric(horizontal: 6.0),
  this.shadows,
});