keys static method

List<String> keys({
  1. String? prefix,
})

Implementation

static List<String> keys({String? prefix}) {
  if (prefix == null) return _mem.keys.toList();
  return _mem.keys.where((k) => k.startsWith(prefix)).toList();
}