DBusInt16 constructor

const DBusInt16(
  1. int value
)

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

Implementation

const DBusInt16(this.value)
    : assert(value >= -32768 && value <= 32767,
          'Int16 must be in range [-32768, 32767]');