Message constructor

Message({
  1. String? token,
  2. String? topic,
  3. String? condition,
  4. MessageNotification? notification,
  5. Map<String, dynamic>? data,
  6. Android? android,
  7. Apns? apns,
  8. Webpush? webpush,
})

Implementation

Message({
  this.token,
  this.topic,
  this.condition,
  this.notification,
  this.data,
  this.android,
  this.apns,
  this.webpush,
});