PositionedDirectional.fill constructor

PositionedDirectional.fill({
  1. double? start = 0.0,
  2. double? end = 0.0,
  3. double? top = 0.0,
  4. double? bottom = 0.0,
  5. required Widget child,
})

Implementation

PositionedDirectional.fill({
  this.start = 0.0,
  this.end = 0.0,
  super.top = 0.0,
  super.bottom = 0.0,
  required super.child,
});