DctfWebResponse.fromJson constructor

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

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