IosMediaTrack constructor

IosMediaTrack({
  1. required String trackContentType,
  2. required int trackId,
  3. required TrackType type,
  4. Map<String, dynamic>? customData,
  5. RFC5646_LANGUAGE? language,
  6. String? name,
  7. TextTrackType? subtype,
  8. String? trackContentId,
})

Implementation

IosMediaTrack({
  required super.trackContentType,
  required super.trackId,
  required super.type,
  super.customData,
  super.language,
  super.name,
  super.subtype,
  super.trackContentId,
});