getGlobalKey method

GlobalKey<State<StatefulWidget>>? getGlobalKey(
  1. String id
)

Retorna la GlobalKey interna para asignar al widget en el árbol.

Uso:

ElevatedButton(
  key: McpEvents.instance.getGlobalKey('auth.login_button'),
  ...
)

Implementation

GlobalKey? getGlobalKey(String id) => _widgets[id]?.globalKey;