SignatureComponent constructor

const SignatureComponent({
  1. Key? key,
  2. required ComponentModel component,
  3. required String? value,
  4. required ValueChanged<String?> onChanged,
  5. FormioLocale locale = const DefaultFormioLocale(),
})

Implementation

const SignatureComponent({
  super.key,
  required this.component,
  required this.value,
  required this.onChanged,
  this.locale = const DefaultFormioLocale(),
});