setDeviceLanguage method
Implementation
Future<Map<String, dynamic>> setDeviceLanguage(
String deviceSerial,
String language, // e.g., "ENGLISH", "GERMAN"
) async {
return _client.post('/api/lapp/device/language/set', {
'deviceSerial': deviceSerial,
'language': language,
});
}