asBase32 method
Give a representation of this recovery data key as a base32 string, excluding padding
Implementation
String asBase32() {
final base32Encoded = base32.encode(_bytes);
return base32Encoded.replaceAll('=', '');
}
Give a representation of this recovery data key as a base32 string, excluding padding
String asBase32() {
final base32Encoded = base32.encode(_bytes);
return base32Encoded.replaceAll('=', '');
}