fileType property

SupportFile get fileType

Implementation

SupportFile get fileType => switch(this){
  NetWorkFileX(:final url) => url.fileType,
  LocalFileFileX(:final file) => file.path.fileType,
  LocalPathFileX(:final path) => path.fileType,
};