copyWith method

ThemeState copyWith({
  1. String? themeType,
})

Implementation

ThemeState copyWith({String? themeType}) {
  return ThemeState(themeType: themeType ?? this.themeType);
}