pointPeriodic function

NornsPointHelper pointPeriodic({
  1. required NornsDuration point,
  2. required NornsDuration period,
  3. int? key,
})

Implementation

NornsPointHelper pointPeriodic({
  required NornsDuration point,
  required NornsDuration period,
  int? key,
}) =>
    NornsPointHelper(
      point: point,
      type: NornsPointHelperType.fromStarting,
      period: period,
      key: key,
    );