enter function

void enter(
  1. dynamic body()
)

Declare function called when we enter a menu

Implementation

void enter(dynamic Function() body) {
  _declarer!.enter(body);
}