allSupportedExtensions property

List<String> get allSupportedExtensions

Returns a combined list of all supported file extensions.

This includes image, audio, video, and document types.

Implementation

static List<String> get allSupportedExtensions =>
    {...imageExtensions, ...audioExtensions, ...videoExtensions, ...documentExtensions}.toList();