getAtSignListFromKeychain method

Future<List<String>> getAtSignListFromKeychain()

Fetches list of all the onboarded atsigns

Implementation

Future<List<String>> getAtSignListFromKeychain() async {
  final atsigns = await readAtsigns();
  return atsigns.map((e) => e.atSign).toList();
}