getMnemonicInUse method

String? getMnemonicInUse()

Implementation

String? getMnemonicInUse() {
  if (keyStoreInUse == null) {
    throw ArgumentError('The keyStore in use is null');
  }
  return keyStoreInUse!.mnemonic;
}