Byte constructor

Byte(
  1. int value
)

Implementation

Byte(int value) {
  _byte = value & 0xFF;
}