custom static method
- Expression<
int> ? id, - Expression<
double> ? width, - Expression<
double> ? height, - Expression<
double> ? dx, - 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,
});
}