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