copyWith method

CountdownAdvancedStyle copyWith({
  1. Border? border,
  2. OutlinedBorder? shape,
  3. Clip? clipBehavior,
  4. AlignmentGeometry? alignment,
  5. BoxConstraints? constraints,
  6. Matrix4? transform,
  7. AlignmentGeometry? transformAlignment,
  8. HitTestBehavior? hitTestBehavior,
  9. String? semanticLabel,
  10. 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,
  );
}