ArquivoMaed.fromJson constructor
Implementation
factory ArquivoMaed.fromJson(Map<String, dynamic> json) {
return ArquivoMaed(
nomeArquivoNotificacao: json['nomeArquivoNotificacao'].toString(),
pdfNotificacao: json['pdfNotificacao'].toString(),
nomeArquivoDarf: json['nomeArquivoDarf'].toString(),
pdfDarf: json['pdfDarf'].toString(),
);
}