PagamentoDebito constructor

PagamentoDebito({
  1. required String competencia,
  2. required String tipoDebito,
  3. required double valorPrincipal,
  4. required double valorMulta,
  5. required double valorJuros,
  6. required double valorTotal,
  7. required List<DiscriminacaoDebito> discriminacoes,
})

Implementation

PagamentoDebito({
  required this.competencia,
  required this.tipoDebito,
  required this.valorPrincipal,
  required this.valorMulta,
  required this.valorJuros,
  required this.valorTotal,
  required this.discriminacoes,
});