getAllKeys method

List<String> getAllKeys()

Get all available translation keys (for debugging)

Implementation

List<String> getAllKeys() {
  if (_values == null) return [];
  return _values!.keys.toList();
}