DBusArray.int64 constructor

DBusArray.int64(
  1. Iterable<int> values
)

Creates a new array of signed 64 bit values.

Implementation

factory DBusArray.int64(Iterable<int> values) {
  return DBusArray(
      DBusSignature('x'), values.map((value) => DBusInt64(value)));
}