getVideoInfo property
Help to retrieve further video's informations about your picked source.
Return an object MediaInfo containing video's informations.
Implementation
static Future<MediaInfo> get getVideoInfo async {
final data =
await (_methodChannel.invokeMapMethod<String, dynamic>('pickVideo')
as FutureOr<Map<String, dynamic>>);
return MediaInfo.fromJson(data);
}