activateTheme method

Future<void> activateTheme(
  1. int id
)

Activates the given theme

Implementation

Future<void> activateTheme(int id) async {
  await _put('/api/theme/$id/active');
}