txt property

List<String> get txt

Implementation

List<String> get txt => (values[9] as DBusArray)
    .children
    .map((child) => (child as DBusArray)
        .children
        .map((child) => (child as DBusByte).value)
        .toList())
    .map((e) => utf8.decode(e))
    .toList();