CShareAutocomplete constructor

const CShareAutocomplete({
  1. Key? key,
  2. required dynamic onSelected(
    1. Map<String, dynamic>
    ),
  3. VoidCallback? onClear,
  4. String? initialValue,
  5. String? errorText,
  6. String labelText = 'Share name',
  7. String hintText = 'Enter Share/Company Name',
  8. bool readOnly = false,
})

Implementation

const CShareAutocomplete({
  super.key,
  required this.onSelected,
  this.onClear,
  this.initialValue,
  this.errorText,
  this.labelText = 'Share name',
  this.hintText = 'Enter Share/Company Name',
  this.readOnly = false,
});