getFileExtension static method
converts /some/path/file.i18n.json to i18n.json
Implementation
static String getFileExtension(String path) {
final fileName = getFileName(path);
final firstDot = fileName.indexOf('.');
return fileName.substring(firstDot + 1);
}