toThemeData method

ThemeData toThemeData()

Convert to Material ThemeData for interoperability.

Implementation

ThemeData toThemeData() {
  return ThemeData(
    brightness: brightness,
    colorSchemeSeed: colors.primary,
    useMaterial3: true,
    fontFamily: typography.fontFamily,
  );
}