ResponseTimeRootCauseEntity.fromJson constructor

ResponseTimeRootCauseEntity.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}