PlexFormWidget<T> constructor

const PlexFormWidget<T>({
  1. Key? key,
  2. required PlexForm entity,
  3. required void onSubmit(
    1. T entity
    ),
  4. String? persistenceKey,
  5. PlexDb? db,
})

Implementation

const PlexFormWidget({
  super.key,
  required this.entity,
  required this.onSubmit,
  this.persistenceKey,
  this.db,
});