remove0x04 function

Uint8List remove0x04(
  1. Uint8List input
)

@param input the byte sequence. @return the byte sequence.

Implementation

Uint8List remove0x04(Uint8List input) {
  if (input[0] == 4) {
    return input.sublist(1, input.length);
  } else {
    return input;
  }
}