getFileExtensionFromPath static method

String getFileExtensionFromPath(
  1. String path
)

Implementation

static String getFileExtensionFromPath(String path) {
  return path.split('.').last;
}