MacosPopupButtonTheme constructor

const MacosPopupButtonTheme({
  1. Key? key,
  2. required MacosPopupButtonThemeData data,
  3. required Widget child,
})

Creates a MacosPopupButtonTheme.

The data parameter must not be null.

Implementation

const MacosPopupButtonTheme({
  super.key,
  required this.data,
  required super.child,
});