isVideo property

bool get isVideo

Implementation

bool get isVideo =>
    type == FileType.video ||
    ['mp4', 'avi', 'mov', 'wmv', 'flv', 'webm', 'mkv', '3gp']
        .contains(extension.toLowerCase());