DBusByte constructor

const DBusByte(
  1. int value
)

Creates a new byte with the given value.

Implementation

const DBusByte(this.value)
    : assert(value >= 0 && value <= 255, 'Byte must be in range [0, 255]');