allowedExtensions static method

List<String>? allowedExtensions()

Implementation

static List<String>? allowedExtensions(){
  //TODO:: Need to add AMR Audio file in future
  return [
    // Allowed extensions for each media type
    'mp3', 'aac', 'mpeg', 'ogg', // Audio
    'txt', 'pdf', 'ppt', 'doc', 'xls', 'docx', 'pptx', 'xlsx', // Documents
    'jpg', 'jpeg', 'png', 'webp', // Images
    'mp4', '3gp', // Videos
  ];
}