getMetadata method

  1. @override
Future<VideoMetadata> getMetadata(
  1. EditorVideo value
)
override

Retrieves detailed information about the given video.

value is an EditorVideo instance that can point to a file, memory, network URL, or asset.

Returns a Future containing VideoMetadata about the video.

Implementation

@override
Future<VideoMetadata> getMetadata(EditorVideo value) async {
  return _manager.getMetadata(value);
}