copyWith method
Implementation
DynamicOffset copyWith({
Length? dx,
Length? dy,
}) {
return DynamicOffset(
dx ?? this.dx,
dy ?? this.dy,
);
}
DynamicOffset copyWith({
Length? dx,
Length? dy,
}) {
return DynamicOffset(
dx ?? this.dx,
dy ?? this.dy,
);
}