isVideo static method

bool isVideo(
  1. String fileName
)

Implementation

static bool isVideo(String fileName) =>
    ['mp4', 'mov'].contains(getFileExtension(fileName));