extension property

String extension

Quick access to the file extension

Implementation

String get extension {
  try {
    return name.split('.').last;
  } catch (e) {
    throw NearbyServiceException('Can\'t get extension from $name');
  }
}