S360fSignaturePad constructor

const S360fSignaturePad({
  1. required String label,
  2. required void onChanged(
    1. String
    ),
  3. String? value,
  4. Key? key,
  5. bool isError = false,
  6. bool isRequired = false,
  7. bool isSignatureDrawable = true,
  8. String errorText = '',
})

Implementation

const S360fSignaturePad({
  required this.label,
  required this.onChanged,
  this.value,
  super.key,
  this.isError = false,
  this.isRequired = false,
  this.isSignatureDrawable = true,
  this.errorText = '',
});