updateStyleVariables method

Future<void> updateStyleVariables(
  1. int id,
  2. Map<String, String> variables
)

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});
}