videoLoadOptions property

VideoLoadOptions videoLoadOptions

The default VideoLoadOptions used by Video.load.

The default options are used if no individual options are passed to the Video.load method. Please note that this property is just a forward to Video.defaultLoadOptions.

Implementation

static VideoLoadOptions get videoLoadOptions => Video.defaultLoadOptions;
void videoLoadOptions=(VideoLoadOptions options)

Implementation

static set videoLoadOptions(VideoLoadOptions options) {
  Video.defaultLoadOptions = options;
}