WindowRectanglesCompanion constructor

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

Implementation

const WindowRectanglesCompanion({
  this.id = const Value.absent(),
  this.width = const Value.absent(),
  this.height = const Value.absent(),
  this.dx = const Value.absent(),
  this.dy = const Value.absent(),
});