DBusInt64 constructor

const DBusInt64(
  1. int value
)

Creates a new signed 64 bit integer with the given value.

Implementation

const DBusInt64(this.value)
    : assert(value >= -(1 << 63) && value <= (1 << 63) - 1,
          'Int64 must be in range [-9223372036854775808, 9223372036854775807]');