get method

dynamic get(
  1. String key
)

Gets an attribute from the handshake request context.

Implementation

dynamic get(String key) {
  return handshakeRequest.attribute(key);
}