SelectionBoxDecoration constructor

SelectionBoxDecoration({
  1. TextStyle? titleStyle,
  2. TextStyle? hintStyle,
})

Implementation

SelectionBoxDecoration({TextStyle? titleStyle, TextStyle? hintStyle}) {
  this.titleStyle = titleStyle ??
      const TextStyle(color: Colors.black, fontWeight: FontWeight.bold);
  this.hintStyle = hintStyle ??
      const TextStyle(color: Colors.grey, fontWeight: FontWeight.w300);
}