InputDropdown constructor

const InputDropdown({Key key, Widget child, String labelText, String valueText, TextStyle valueStyle, VoidCallback onPressed })

Implementation

const InputDropdown(
    {Key key,
    this.child,
    this.labelText,
    this.valueText,
    this.valueStyle,
    this.onPressed})
    : super(key: key);