NiceProfileEditForm constructor

const NiceProfileEditForm({
  1. Key? key,
  2. String? initialName,
  3. String? initialBio,
  4. String? initialEmail,
  5. String? initialPhone,
  6. String? initialWebsite,
  7. String? initialLocation,
  8. void onSave(
    1. Map<String, String> values
    )?,
  9. VoidCallback? onCancel,
  10. List<NiceProfileField>? additionalFields,
})

Implementation

const NiceProfileEditForm({
  super.key,
  this.initialName,
  this.initialBio,
  this.initialEmail,
  this.initialPhone,
  this.initialWebsite,
  this.initialLocation,
  this.onSave,
  this.onCancel,
  this.additionalFields,
});