xDropdownLabel method
Implementation
Widget xDropdownLabel({
@required final String name,
final double fontSize,
final Color color,
final double lableSize,
final Color textColor,
final Key key,
final TextStyle style,
@required final void Function(String) onChanged,
@required final String dropdownValue,
}) {
return XDropdownLab(
color: color,
fontSize: fontSize,
key: key,
lableSize: lableSize,
name: name,
textColor: textColor,
onChanged: onChanged,
list: this,
dropdownValue: dropdownValue,
style: style,
);
}