parse static method

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

Implementation

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