createWithOptions method

Future<int?> createWithOptions(
  1. VideoCreationOptions options
)
inherited

Creates an instance of a video player based on creation options and returns its playerId.

Implementation

Future<int?> createWithOptions(VideoCreationOptions options) {
  return create(options.dataSource);
}