alignAtLERP method

Align alignAtLERP(
  1. Alignment a,
  2. Alignment b,
  3. double t, {
  4. Key? key,
  5. double? heightFactor,
  6. double? widthFactor,
})

Implementation

Align alignAtLERP(Alignment a, Alignment b, double t, {Key? key, double? heightFactor, double? widthFactor}) => Align(
      key: key,
      alignment: Alignment.lerp(a, b, t)!,
      heightFactor: heightFactor,
      widthFactor: widthFactor,
      child: this,
    );