NotificationMessage constructor

NotificationMessage({
  1. required String? title,
  2. required String? body,
  3. required Map<String, dynamic>? data,
})

Implementation

NotificationMessage({
  required this.title,
  required this.body,
  required this.data,
});