copyWith method Null safety
Implementation
ButtonsStyle copyWith({
Color? backgroundColor,
Color? textColor,
double? radius,
bool? visible,
String? text,
}) {
return new ButtonsStyle(
backgroundColor: backgroundColor ?? this.backgroundColor,
textColor: textColor ?? this.textColor,
radius: radius ?? this.radius,
visible: visible ?? this.visible,
text: text ?? this.text,
);
}