ReceivedInfo constructor

ReceivedInfo({
  1. int? id,
  2. String? title,
  3. String? body,
  4. NoticePayload? payload,
})

Implementation

ReceivedInfo({
  this.id,
  this.title,
  this.body,
  this.payload,
});