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