BasicButtonDropdownModel constructor

const BasicButtonDropdownModel({
  1. required Widget child,
  2. required bool isButtonDropdown,
  3. Color? backgroundColor,
  4. Color? textAndIconColor,
})

Implementation

const BasicButtonDropdownModel({
  required this.child,
  required this.isButtonDropdown,
  this.backgroundColor,
  this.textAndIconColor,
});