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({
  Key? key,
  required this.data,
  required Widget child,
}) : super(key: key, child: child);