VideoSource constructor

  1. @protected
VideoSource({
  1. required String path,
  2. required VideoSourceType type,
  3. required Map<String, String> headers,
})

A constructor for use in serialization. NOTE: This constructor is for internal use only. Please use init instead.

Implementation

@protected
VideoSource({
  required this.path,
  required this.type,
  required this.headers,
});