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,
  double? top = 0.0,
  double? bottom = 0.0,
  required Widget child,
}) : super(
        child: child,
        top: top,
        bottom: bottom,
      );