copyWith method
- ZetaIndicatorType? type,
- ZetaWidgetSize? size,
- IconData? icon,
- int? value,
- bool? inverse,
- Key? key,
Creates a clone.
Implementation
ZetaIndicator copyWith({
ZetaIndicatorType? type,
ZetaWidgetSize? size,
IconData? icon,
int? value,
bool? inverse,
Key? key,
}) {
return ZetaIndicator(
key: key ?? this.key,
type: type ?? this.type,
size: size ?? this.size,
icon: icon ?? this.icon,
value: value ?? this.value,
inverse: inverse ?? this.inverse,
);
}