mode property

Returns the text track mode, represented by a string from the following list:

Can be set, to change the mode.

MDN Reference

Implementation

_i3.TextTrackMode get mode =>
    _i3.TextTrackModeOptions.values.byName(_i4.getProperty(
      this,
      'mode',
    ));
void mode=(TextTrackMode value)

Implementation

set mode(_i3.TextTrackMode value) {
  _i4.setProperty(
    this,
    'mode',
    value.name,
  );
}