positionedDirectional method

PositionedDirectional positionedDirectional({
  1. Key? key,
  2. double? start,
  3. double? top,
  4. double? end,
  5. double? bottom,
  6. double? width,
  7. double? height,
})

Returns a new directional positioned widget with the given position.

Implementation

PositionedDirectional positionedDirectional({
  Key? key,
  double? start,
  double? top,
  double? end,
  double? bottom,
  double? width,
  double? height,
}) => PositionedDirectional(
  key: key,
  start: start,
  top: top,
  end: end,
  bottom: bottom,
  width: width,
  height: height,
  child: this,
);