MBContactForm constructor

const MBContactForm({
  1. Key? key,
  2. bool hasHeading = true,
  3. required bool withIcons,
  4. required String destinationEmail,
})

Implementation

const MBContactForm({
  Key? key,
  this.hasHeading = true,
  required this.withIcons,
  required this.destinationEmail,
}) : super(key: key);