DeviceFeedbackResponse.fromJson constructor
Implementation
factory DeviceFeedbackResponse.fromJson(Map<String, dynamic> json) {
return DeviceFeedbackResponse(
data: json['data'] as String?,
status: json['status'] as String,
error: json['error'] as String?,
);
}