objectTopRight method

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

Can be used to align a widget to topright.

Implementation

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