SelectionBoxDecoration constructor
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);
}