mapInt32 method

Iterable<int> mapInt32()

Maps the contents of this array into native types. Only works if childSignature is 'i'.

Implementation

Iterable<int> mapInt32() =>
    children.map((value) => (value as DBusInt32).value);