CenterLeft constructor

const CenterLeft({
  1. Key? key,
  2. double? widthFactor,
  3. double? heightFactor,
  4. Widget? child,
})

Implementation

const CenterLeft({Key? key, double? widthFactor, double? heightFactor, Widget? child})
    : super(
        key: key,
        widthFactor: widthFactor,
        heightFactor: heightFactor,
        child: child,
        alignment: Alignment.centerLeft,
      );