getVideoInfo method

Future<void> getVideoInfo({
  1. required String? videoUri,
  2. required dynamic onResult(
    1. String?
    ),
  3. required dynamic onError(
    1. String? message
    ),
})

Implementation

Future<void> getVideoInfo(
    {required String? videoUri,
    required Function(String?) onResult,
    required Function(String? message) onError}) async {
  throw UnimplementedError('getVideoInfo() has not been implemented.');
}