Control constructor

const Control({
  1. Key? key,
  2. required Map<String, dynamic> schema,
  3. required String scope,
  4. required bool isRequired,
  5. required dynamic defaultValue,
  6. required ValueChanged onValueChanged,
  7. Map<String, dynamic>? options,
})

Implementation

const Control({
  super.key,
  required this.schema,
  required this.scope,
  required this.isRequired,
  required this.defaultValue,
  required this.onValueChanged,
  this.options,
});