SubtitleAttribute constructor

const SubtitleAttribute({
  1. required SubtitleAttrType attrType,
  2. required int startTime,
  3. required int stopTime,
  4. required Object attrValue,
})

Creates a new instance of SubtitleAttribute.

Implementation

const SubtitleAttribute({
  required this.attrType,
  required this.startTime,
  required this.stopTime,
  required this.attrValue,
});