parse static method

WebSocketConnectionRef? parse(
  1. Map<String, dynamic>? json
)

Implementation

static WebSocketConnectionRef? parse(Map<String, dynamic>? json) =>
    json == null ? null : WebSocketConnectionRef._fromJson(json);