Select constructor

Select({
  1. String? id,
  2. Map<String, String>? attributes,
  3. Map<String, dynamic>? style,
  4. String? className,
  5. void onSelect(
    1. String
    )?,
  6. String? defaultValue,
  7. List<Option> options = const [],
})

Implementation

Select({
  super.id,
  super.attributes,
  super.style,
  super.className,
  this.onSelect,
  this.defaultValue,
  this.options = const [],
}) : super(tag: 'select');