copyWith method

ThemeUpdate copyWith({
  1. String? themeKey,
})

Implementation

ThemeUpdate copyWith({String? themeKey}) {
  return ThemeUpdate(
    themeKey: themeKey ?? this.themeKey,
  );
}