LeadForm constructor

const LeadForm({
  1. required String action,
  2. bool submitted = false,
  3. String submitLabel = 'Quero saber mais',
  4. Key? key,
})

Implementation

const LeadForm({
  required this.action,
  this.submitted = false,
  this.submitLabel = 'Quero saber mais',
  super.key,
});