positionedDirectional method
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,
);