copyWith method
CountdownAdvancedStyle
copyWith({
- Border? border,
- OutlinedBorder? shape,
- Clip? clipBehavior,
- AlignmentGeometry? alignment,
- BoxConstraints? constraints,
- Matrix4? transform,
- AlignmentGeometry? transformAlignment,
- HitTestBehavior? hitTestBehavior,
- String? semanticLabel,
- bool? excludeFromSemantics,
Implementation
CountdownAdvancedStyle copyWith({
Border? border,
OutlinedBorder? shape,
Clip? clipBehavior,
AlignmentGeometry? alignment,
BoxConstraints? constraints,
Matrix4? transform,
AlignmentGeometry? transformAlignment,
HitTestBehavior? hitTestBehavior,
String? semanticLabel,
bool? excludeFromSemantics,
}) {
return CountdownAdvancedStyle(
border: border ?? this.border,
shape: shape ?? this.shape,
clipBehavior: clipBehavior ?? this.clipBehavior,
alignment: alignment ?? this.alignment,
constraints: constraints ?? this.constraints,
transform: transform ?? this.transform,
transformAlignment: transformAlignment ?? this.transformAlignment,
hitTestBehavior: hitTestBehavior ?? this.hitTestBehavior,
semanticLabel: semanticLabel ?? this.semanticLabel,
excludeFromSemantics: excludeFromSemantics ?? this.excludeFromSemantics,
);
}