SelectSpaceFormField constructor

const SelectSpaceFormField({
  1. dynamic key,
  2. String? title,
  3. String? selectTitle,
  4. String? emptyText,
  5. bool mandatory = true,
  6. required String canCheck,
  7. bool useCompatView = false,
})

Implementation

const SelectSpaceFormField({
  super.key,
  this.title,
  this.selectTitle,
  this.emptyText,
  this.mandatory = true,
  required this.canCheck,
  this.useCompatView = false,
});