Convert a Uint8List to String
static String bytesToString(Uint8List bytes, {Encoding encoding = utf8}) { return encoding.decode(bytes); }