RecoveryDataKey.fromBase32 constructor

RecoveryDataKey.fromBase32(
  1. String base32Key
)

Load the recovery data key from its base32 representation

Implementation

factory RecoveryDataKey.fromBase32(String base32Key) {
  return RecoveryDataKey.fromRawBytes(base32.decode(base32Key));
}