toThemeData method

ThemeData toThemeData()

Convert to Flutter ThemeData

Implementation

ThemeData toThemeData() {
  return ThemeData(
    useMaterial3: true,
    colorScheme: colorScheme,
    brightness: brightness,
    textTheme: textTheme,
    extensions: [
      NeumorphicThemeExtension(
        rest: rest,
        hover: hover,
        pressed: pressed,
        disabled: disabled,
      ),
    ],
  );
}