BluxNotification constructor

const BluxNotification({
  1. required String id,
  2. required String body,
  3. String? title,
  4. String? url,
  5. String? imageUrl,
  6. Map<String, dynamic>? data,
})

Implementation

const BluxNotification({
  required this.id,
  required this.body,
  this.title,
  this.url,
  this.imageUrl,
  this.data,
});