objectCenterLeft method

Align objectCenterLeft({
  1. Key? key,
  2. double? heightFactor,
  3. double? widthFactor,
})

Can be used to align a widget to centerleft.

Implementation

Align objectCenterLeft({
  Key? key,
  double? heightFactor,
  double? widthFactor,
}) =>
    Align(
      key: key,
      alignment: Alignment.centerLeft,
      heightFactor: heightFactor,
      widthFactor: widthFactor,
      child: this,
    );