decoration property
BoxDecoration
get
decoration
装饰
Implementation
BoxDecoration get decoration => BoxDecoration(
color: this.backgroundColor,
border: Border.all(
color: this.borderColor ?? Colors.transparent,
width: this.borderWidth ?? 0),
borderRadius:
this.borderRadius ?? BorderRadius.circular(this.radius ?? 0));