custom static method

Insertable<WindowRectangleRow> custom({
  1. Expression<int>? id,
  2. Expression<double>? width,
  3. Expression<double>? height,
  4. Expression<double>? dx,
  5. Expression<double>? dy,
})

Implementation

static Insertable<WindowRectangleRow> custom({
  Expression<int>? id,
  Expression<double>? width,
  Expression<double>? height,
  Expression<double>? dx,
  Expression<double>? dy,
}) {
  return RawValuesInsertable({
    if (id != null) 'id': id,
    if (width != null) 'width': width,
    if (height != null) 'height': height,
    if (dx != null) 'dx': dx,
    if (dy != null) 'dy': dy,
  });
}