PushEntity constructor

PushEntity({
  1. required String id,
  2. String? payload,
  3. String? title,
  4. String? body,
  5. PushRepeatInterval? repeatInterval,
  6. Duration? scheduleDurationAddition,
})

Implementation

PushEntity({
  required this.id,
  this.payload,
  this.title,
  this.body,
  this.repeatInterval,
  this.scheduleDurationAddition,
});