parse static method

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

Implementation

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