Byte constructor

Byte({
  1. int? data,
})

Implementation

Byte({
  int? data,
}):
this.data = data ?? 0;