decode static method
Decodes a list of Big5 encoded bytes to a Unicode string.
Takes a list of integers representing Big5 encoded bytes and converts them back to their original Unicode string representation.
Parameters:
src: A list of integers representing Big5 encoded bytes
Returns:
- The decoded Unicode string
Example:
final bytes = [173, 68, 166, 184];
final decoded = Big5.decode(bytes);
print(decoded); // "胖次"
Implementation
static String decode(List<int> src) {
return _big5TransformDecode(src);
}