ObterProcuracaoRequest.fromJson constructor
Cria a partir de JSON
Implementation
factory ObterProcuracaoRequest.fromJson(Map<String, dynamic> json) {
return ObterProcuracaoRequest(
outorgante: json['outorgante'].toString(),
tipoOutorgante: json['tipoOutorgante'].toString(),
outorgado: json['outorgado'].toString(),
tipoOutorgado: json['tipoOutorgado'].toString(),
);
}