parse static method

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

Implementation

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