copyWith method

AppThemeState copyWith({
  1. ThemeData? theme,
})

Implementation

AppThemeState copyWith({ThemeData? theme}) {
  return AppThemeState(theme: theme ?? this.theme);
}