MitResponse constructor

MitResponse({
  1. required String status,
  2. String? responseId,
  3. String? responseDateTime,
  4. required List<MensagemMit> mensagens,
})

Construtor para MitResponse.

Implementation

MitResponse({
  required this.status,
  this.responseId,
  this.responseDateTime,
  required this.mensagens,
});