getKey method

GlobalKey<State<StatefulWidget>>? getKey(
  1. TutorialID widgetID
)

Retrieves a GlobalKey for a specific TutorialID.

Implementation

GlobalKey? getKey(TutorialID widgetID) {
  return _keyMap[widgetID];
}