theme_factory.dart 81 B

12345
  1. import 'app_theme.dart';
  2. abstract class ThemeFactory {
  3. AppTheme getTheme();
  4. }