encodeCheck method
Implementation
String encodeCheck(Uint8List bytes) {
Uint8List hash = doubleHash(bytes);
Uint8List combine = Uint8List.fromList(
[bytes, hash.sublist(0, 4)].expand((i) => i).toList(growable: false));
return encode(combine);
}