saveTheme abstract method

Future<void> saveTheme({
  1. required ZetaThemeServiceData themeData,
})

Saves the provided theme data as the application's theme.

saveTheme is a method used to save the current theme data.

Takes a ZetaThemeData object that represents the theme to be saved.

Returns a Future that completes when the theme data has been successfully saved.

Implementation

Future<void> saveTheme({required ZetaThemeServiceData themeData});