PushMessage constructor

const PushMessage({
  1. String? title,
  2. String? body,
  3. Map<String, dynamic> data = const {},
  4. String? collapseKey,
  5. String? messageId,
})

Implementation

const PushMessage({
  this.title,
  this.body,
  this.data = const {},
  this.collapseKey,
  this.messageId,
});