copyWith method

TThemeState copyWith({
  1. ThemeMode? themeMode,
  2. int? primaryColorIndex,
})

Implementation

TThemeState copyWith({
  ThemeMode? themeMode,
  int? primaryColorIndex,
}) {
  return TThemeState(
    themeMode: themeMode ?? this.themeMode,
    primaryColorIndex: primaryColorIndex ?? this.primaryColorIndex,
  );
}