IosMediaTrack constructor
IosMediaTrack({
- required String trackContentType,
- required int trackId,
- required TrackType type,
- Map<
String, dynamic> ? customData, - Rfc5646Language? language,
- String? name,
- TextTrackType? subtype,
- String? trackContentId,
Creates an IosMediaTrack instance.
trackContentType
, trackId
, and type
are required. Other parameters are optional.
Implementation
IosMediaTrack({
required super.trackContentType,
required super.trackId,
required super.type,
super.customData,
super.language,
super.name,
super.subtype,
super.trackContentId,
});