objectTopLeft method

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

Can be used to align a widget to topleft.

Implementation

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