MacosIconTheme constructor

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

Creates an icon theme that controls the color, opacity, and size of descendant widgets.

Both data and child arguments must not be null.

Implementation

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