RemoteMessage constructor

const RemoteMessage({
  1. required String id,
  2. required String type,
  3. required String action,
  4. required Map<String, dynamic> payload,
  5. required DateTime timestamp,
  6. String? replyTo,
})

Implementation

const RemoteMessage({
  required this.id,
  required this.type,
  required this.action,
  required this.payload,
  required this.timestamp,
  this.replyTo,
});