SuggestionBodyDataModel constructor

SuggestionBodyDataModel({
  1. String? name,
  2. String? surname,
  3. String? phoneNumber,
  4. String? email,
  5. String? subject,
  6. String? message,
})

Implementation

SuggestionBodyDataModel({
  this.name,
  this.surname,
  this.phoneNumber,
  this.email,
  this.subject,
  this.message,
});