copyWith method
Implementation
GridItemEntity copyWith({
Offset? localPosition,
int? orderId,
Size? size,
}) =>
GridItemEntity(
localPosition: localPosition ?? this.localPosition,
size: size ?? this.size,
orderId: orderId ?? this.orderId,
);