periodInMinutes property

double? periodInMinutes

If set, the onAlarm event should fire every periodInMinutes minutes after the initial event specified by when or delayInMinutes. If not set, the alarm will only fire once.

Implementation

double? get periodInMinutes => _wrapped.periodInMinutes;
void periodInMinutes=(double? v)

Implementation

set periodInMinutes(double? v) {
  _wrapped.periodInMinutes = v;
}