currentTutorial method

String? currentTutorial(
  1. Type page
)

Implementation

String? currentTutorial(Type page) {
  if (_tutorials[page]?.completed ?? true) {
    return null;
  }
  return _tutorials[page]?.current;
}