fromByte static method

UpdateMessageTuple fromByte(
  1. int byte
)

Implementation

static UpdateMessageTuple fromByte(int byte) {
  if (byte == 0) {
    return noneType;
  }
  return fromID(String.fromCharCode(byte));
}