Positioned.fill constructor

Positioned.fill({
  1. double? left = 0.0,
  2. double? top = 0.0,
  3. double? right = 0.0,
  4. double? bottom = 0.0,
  5. required Widget child,
})

Creates a Positioned object with left, top, right, and bottom set to 0.0 unless a value for them is passed.

Implementation

Positioned.fill({
  double? left = 0.0,
  this.top = 0.0,
  double? right = 0.0,
  this.bottom = 0.0,
  required Widget child,
})  : _left = left,
      _right = right,
      super(child: child);