findLocalizedKeys method

Future<void> findLocalizedKeys()

Implementation

Future<void> findLocalizedKeys() async {
  final fileSystem = LocalFileSystem();
  await _findArbKeys(fileSystem);
  await _findJsonKeys(fileSystem);
  if (config.verbose) {
    print('Found ${_localizedKeys.length} localized keys');
  }
}