getOrCreateSocketKey method

GlobalKey<State<StatefulWidget>> getOrCreateSocketKey(
  1. String socketId
)

Implementation

GlobalKey getOrCreateSocketKey(String socketId) {
  return _socketKeys.putIfAbsent(
    socketId,
    () => GlobalKey(debugLabel: socketId),
  );
}