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