setTheme method

Future<void> setTheme(
  1. ThemeBase theme
)

Sets the theme of the user.

Will be synced to the server.

Implementation

Future<void> setTheme(ThemeBase theme) async {
  _assertLoggedIn();

  await controller.updateUser(user!.copyWith(themeName: theme.name));
}