Bounds.fixed constructor

const Bounds.fixed({
  1. @Default(0) double left,
  2. @Default(0) double top,
  3. @Default(0) double width,
  4. @Default(0) double height,
})

Implementation

const factory Bounds.fixed({
  @Default(0) double left,
  @Default(0) double top,
  @Default(0) double width,
  @Default(0) double height,
}) = FixedBounds;