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,
})

Implementation

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