FluentTheme constructor

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

Applies the given theme data to child.

The data and child arguments must not be null.

Implementation

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