copyWith method
Creates a copy with selected values replaced.
Implementation
FdcCounterStyle copyWith({
TextStyle? textStyle,
Alignment? alignment,
Offset? offset,
double? height,
}) {
return FdcCounterStyle(
textStyle: textStyle ?? this.textStyle,
alignment: alignment ?? this.alignment,
offset: offset ?? this.offset,
height: height ?? this.height,
);
}