between_offset_ofDirection static method
Implementation
static Between<Offset> between_offset_ofDirection(
double direction, double begin, double end,
{(Curve, Curve)? curve}) =>
Between(
begin: Offset.fromDirection(direction, begin),
end: Offset.fromDirection(direction, end),
curve: curve,
);