DctfWebResponse.fromJson constructor
Implementation
factory DctfWebResponse.fromJson(Map<String, dynamic> json) {
return DctfWebResponse(
status: json['status'].toString(),
mensagem: json['mensagem'].toString(),
detalhes: json['detalhes'] as Map<String, dynamic>,
);
}