parse static method

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

Implementation

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