textLeft method

Widget textLeft({
  1. Key key = const Key('no_key'),
})

Implementation

Widget textLeft({
  Key key = const Key('no_key'),
}) {
  return Text(
    this,
    key: key,
    textAlign: TextAlign.left,
  );
}