ByteArray.fromByte constructor

ByteArray.fromByte(
  1. int value
)

从字节数组中提取数值

Implementation

ByteArray.fromByte(int value) {
  _bytes = _toArray(value);
}