currentLevel property

  1. @doNotStore
Level? currentLevel

Get the current level.

This is the level which is last in the levels stack.

Implementation

@doNotStore
Level? get currentLevel => _levels.isEmpty ? null : _levels.last;