FPopoverMenuStyle.inherit constructor

FPopoverMenuStyle.inherit({
  1. required FColorScheme colorScheme,
  2. required FStyle style,
  3. required FTypography typography,
})

Creates a FPopoverMenuStyle that inherits its properties from colorScheme, style and typography.

Implementation

FPopoverMenuStyle.inherit({
  required super.colorScheme,
  required super.style,
  required FTypography typography,
})  : tileGroupStyle = FTileGroupStyle.inherit(colorScheme: colorScheme, style: style, typography: typography),
      maxWidth = 250,
      super.inherit();