copyWith method

WindowRectanglesCompanion copyWith({
  1. Value<int>? id,
  2. Value<double?>? width,
  3. Value<double?>? height,
  4. Value<double?>? dx,
  5. Value<double?>? dy,
})

Implementation

WindowRectanglesCompanion copyWith(
    {Value<int>? id,
    Value<double?>? width,
    Value<double?>? height,
    Value<double?>? dx,
    Value<double?>? dy}) {
  return WindowRectanglesCompanion(
    id: id ?? this.id,
    width: width ?? this.width,
    height: height ?? this.height,
    dx: dx ?? this.dx,
    dy: dy ?? this.dy,
  );
}