CommunicationResponse constructor

CommunicationResponse({
  1. required String message,
  2. String? email,
  3. required List<File> screenshots,
})

Implementation

CommunicationResponse({
  required this.message,
  this.email,
  required this.screenshots,
});