start method
dynamic
start()
Implementation
start() {
assert(isEnable);
if (!_ticker!.isActive) {
final TickerFuture result = _ticker!.start();
}
_status = DanmuStatus.playing;
_checkStatusChanged();
}