FluentTheme constructor

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

Implementation

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