ComputerSafetyCheck.fromJson constructor

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

Implementation

factory ComputerSafetyCheck.fromJson(Map<String, dynamic> json) => ComputerSafetyCheck(
      code: json['code'] as String,
      id: json['id'] as String,
      message: json['message'] as String,
      status: ComputerSafetyCheckStatus.fromJson(json['status'] as String),
    );