UApiLogEndpointResponse.fromMap constructor
Implementation
factory UApiLogEndpointResponse.fromMap(Map<String, dynamic> json) => UApiLogEndpointResponse(
path: json["path"] ?? "",
count: json["count"] ?? 0,
averageDurationMs: (json["averageDurationMs"] as num?)?.toDouble() ?? 0,
);