RemoteMessage constructor

const RemoteMessage({
  1. String? senderId,
  2. Map<String, dynamic> data = const <String, dynamic>{},
  3. String? from,
  4. String? messageId,
  5. String? messageType,
  6. String? title,
  7. String? body,
  8. DateTime? sentTime,
  9. int? ttl,
})

Implementation

const RemoteMessage(
    {this.senderId,
    this.data = const <String, dynamic>{},
    this.from,
    this.messageId,
    this.messageType,
    this.title,
    this.body,
    this.sentTime,
    this.ttl});