copyWith method
ZeroButtonGroupStyleSet
copyWith({
- ZeroButtonGroupStyle? filled,
- ZeroButtonGroupStyle? outlined,
- ZeroButtonGroupStyle? text,
- ZeroButtonGroupStyle? underline,
Copy the current instance with the new value given
Implementation
ZeroButtonGroupStyleSet copyWith({
ZeroButtonGroupStyle? filled,
ZeroButtonGroupStyle? outlined,
ZeroButtonGroupStyle? text,
ZeroButtonGroupStyle? underline,
}) {
return ZeroButtonGroupStyleSet(
filled: filled ?? this.filled,
outlined: outlined ?? this.outlined,
text: text ?? this.text,
underline: underline ?? this.underline,
);
}