IDSDropDownString constructor

const IDSDropDownString({
  1. Key? key,
  2. required Color appBarBg,
  3. required int requestedCode,
  4. required List<String> dropDownArray,
  5. required IDSDropDownCallback<int, dynamic> callback,
})

Creates an instance of IDSDropDownString.

Implementation

const IDSDropDownString({
  super.key,
  required this.appBarBg,
  required this.requestedCode,
  required this.dropDownArray,
  required this.callback,
});