get static method

dynamic get(
  1. AppThemeExtension themeExt
)

Implementation

static get(AppThemeExtension themeExt) {
  return DialogTheme(
      backgroundColor: themeExt.surface,
      titleTextStyle: TextStyle(
        color: themeExt.primary,
        fontSize: 20,
        fontWeight: FontWeight.bold,
      ));
}