getKeys method

Future<List> getKeys()

Implementation

Future<List> getKeys() async {
  return await _lock.synchronized(() async {
    return _addrs.keys.toList();
  });
}