tour property

HintTour? get tour

Implementation

HintTour? get tour => switch (this) {
      HintIdle() => null,
      HintWaiting(:final tour) => tour,
      HintActive(:final tour) => tour,
    };