getHints function

Future<List<String>> getHints({
  1. required String input,
})

Get hints for input part of word of seed phrase to get possible words input: acco returns account, accommodate, ...

Implementation

Future<List<String>> getHints({required String input}) {
  return createLib().ntGetHints(input: input);
}