copyWith method
Implementation
IconPosition copyWith({
double? x,
double? y,
double? size,
}) {
return IconPosition(
x: x ?? this.x,
y: y ?? this.y,
size: size ?? this.size,
);
}
IconPosition copyWith({
double? x,
double? y,
double? size,
}) {
return IconPosition(
x: x ?? this.x,
y: y ?? this.y,
size: size ?? this.size,
);
}