DBusUint32 constructor

const DBusUint32(
  1. int value
)

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

Implementation

const DBusUint32(this.value)
    : assert(value >= 0 && value <= 4294967295,
          'Uint32 must be in range [0, 4294967295]');