fileExtension property
String
get
fileExtension
The common lowercase file extension (without leading dot).
Implementation
String get fileExtension => switch (this) {
ImageFormat.jpeg => 'jpg',
ImageFormat.png => 'png',
};