ResponseTimeRootCauseEntity.fromJson constructor
Implementation
factory ResponseTimeRootCauseEntity.fromJson(Map<String, dynamic> json) {
return ResponseTimeRootCauseEntity(
coverage: json['Coverage'] as double?,
name: json['Name'] as String?,
remote: json['Remote'] as bool?,
);
}