DetalhesPagamentoData constructor

DetalhesPagamentoData({
  1. required String numeroDas,
  2. required String codigoBarras,
  3. required double valorPagoArrecadacao,
  4. required String dataPagamento,
  5. required List<PagamentoDebito> pagamentosDebitos,
})

Implementation

DetalhesPagamentoData({
  required this.numeroDas,
  required this.codigoBarras,
  required this.valorPagoArrecadacao,
  required this.dataPagamento,
  required this.pagamentosDebitos,
});