updateStyleVariables method
Updates the style variables for the given theme
Implementation
Future<void> updateStyleVariables(int id, Map<String, String> variables) async {
await _put('/api/theme/$id/styling', data: {'variables': variables});
}
Updates the style variables for the given theme
Future<void> updateStyleVariables(int id, Map<String, String> variables) async {
await _put('/api/theme/$id/styling', data: {'variables': variables});
}