parse static method

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

Implementation

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