NFE constructor

NFE({
  1. required Estabelecimento estabelecimento,
  2. required String nfeChave,
  3. required DateTime dataEmissao,
  4. required double? valorTotal,
  5. required double valorDesconto,
  6. required List<NfeFormaPagamento> formasPagamento,
  7. required double valorPago,
  8. required List<NfeItem> items,
  9. String? url,
  10. required double valorTributos,
})

Implementation

NFE({
  required this.estabelecimento,
  required this.nfeChave,
  required this.dataEmissao,
  required this.valorTotal,
  required this.valorDesconto,
  required this.formasPagamento,
  required this.valorPago,
  required this.items,
  this.url,
  required this.valorTributos,
});