ContactUs constructor

ContactUs({
  1. required String name,
  2. required String email,
  3. required String phone,
  4. required String message,
  5. int? user,
  6. String? postcode,
  7. String? campaign,
})

Returns a new ContactUs instance.

Implementation

ContactUs({
  required this.name,
  required this.email,
  required this.phone,
  required this.message,
  this.user,
  this.postcode,
  this.campaign,
});