DBusInt32 constructor

const DBusInt32(
  1. int value
)

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

Implementation

const DBusInt32(this.value)
    : assert(value >= -2147483648 && value <= 2147483647,
          'Int32 must be in range [-2147483648, 2147483647]');