fingerprintAsBytes property
Implementation
core.List<core.int> get fingerprintAsBytes {
return convert.base64.decode(fingerprint);
}
Implementation
set fingerprintAsBytes(core.List<core.int> _bytes) {
fingerprint =
convert.base64.encode(_bytes).replaceAll("/", "_").replaceAll("+", "-");
}