startTime property

num get startTime

Returns the text track cue start time, in seconds.

Can be set.

MDN Reference

Implementation

_i2.num get startTime => _i4.getProperty(
      this,
      'startTime',
    );
set startTime (num value)

Implementation

set startTime(_i2.num value) {
  _i4.setProperty(
    this,
    'startTime',
    value,
  );
}