alignAtLERP method
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,
);