SFProfileView constructor

const SFProfileView({
  1. Key? key,
  2. required ProfileFormData additionalData,
  3. ProfileModel? profileModel,
  4. required dynamic onSubmit(
    1. ProfileModel
    ),
  5. List<Widget> children = const [],
})

Implementation

const SFProfileView({
  super.key,
  required this.additionalData,
  this.profileModel,
  required this.onSubmit,
  this.children = const [],
});