HomeownerConsentContents constructor

const HomeownerConsentContents({
  1. Key? key,
  2. required Widget title,
  3. required List<Point>? signaturePoints,
  4. required ValueChanged<List<Point>?> onSignatureChanged,
  5. required bool sendHomeownerEmail,
  6. required ValueChanged<bool> onSendHomeownerEmailChanged,
})

Implementation

const HomeownerConsentContents({
  super.key,
  required this.title,
  required this.signaturePoints,
  required this.onSignatureChanged,
  required this.sendHomeownerEmail,
  required this.onSendHomeownerEmailChanged,
});