pickImageVideo static method
Implementation
static Future<PickedFile?> pickImageVideo() async {
return await _getFilesFromMethodChannel(
type: Platform.isIOS ? "imagevideo" : "custom",
allowedExtensions: imageExtensions + videoExtensions);
}