start method

  1. @mustCallSuper
Future<bool> start()

Start this Track if not started. Returns true if started, false if already started

Implementation

@mustCallSuper
Future<bool> start() async {
  if (_active) {
    // already started
    return false;
  }

  logger.fine('$objectId.start()');

  startMonitor();

  _active = true;
  return true;
}