xDropdownLabel method

Widget xDropdownLabel (
  1. {@required String name,
  2. double fontSize,
  3. Color color,
  4. double lableSize,
  5. Color textColor,
  6. Key key,
  7. TextStyle style,
  8. @required void onChanged(
    1. String
    ),
  9. @required String dropdownValue}
)

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