SelectionModalDecoration constructor
SelectionModalDecoration({})
Implementation
SelectionModalDecoration(
{TextStyle? titleStyle,
Color? btnBackGroundColor,
Color? btnTextColor,
this.btnText='Back',
this.btnRadios = 15}) {
this.titleStyle = titleStyle ??
const TextStyle(color: Colors.black, fontWeight: FontWeight.bold);
this.btnBackGroundColor = (btnBackGroundColor ?? Colors.yellow[700])!;
this.btnTextColor = btnTextColor ?? Colors.black;
}