positionLeft method
Implementation
Positioned positionLeft({
Key? key,
required double left,
double? width,
double? height,
}) =>
Positioned(
key: key,
left: left,
width: width,
height: height,
child: this,
);
Positioned positionLeft({
Key? key,
required double left,
double? width,
double? height,
}) =>
Positioned(
key: key,
left: left,
width: width,
height: height,
child: this,
);