fromJsonString static method
Implementation
static DBusSignal fromJsonString(String jsonString) {
try {
final jsonMap = jsonDecode(jsonString) as Map<String, dynamic>;
return fromJson(jsonMap);
} catch (e) {
throw Exception('Failed to decode JSON string: $e');
}
}