enterItem function

void enterItem(
  1. dynamic body()
)

Declare function called when we enter a menu

Implementation

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