storeKey method

void storeKey(
  1. String id,
  2. GlobalKey<State<StatefulWidget>> key
)

Store a global key with an ID

Implementation

void storeKey(String id, GlobalKey key) {
  _keys[id] = key;
}