between_offset_ofDirection static method

Between<Offset> between_offset_ofDirection(
  1. double direction,
  2. double begin,
  3. double end, {
  4. (Curve, Curve)? curve,
})

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