// ignore_for_file: public_member_api_docs // TODO(allisonryan0002): Document this section when the API is stable. part of 'theme_cubit.dart'; class ThemeState extends Equatable { const ThemeState(this.theme); const ThemeState.initial() : theme = const PinballTheme(characterTheme: DashTheme()); final PinballTheme theme; @override List get props => [theme]; }