NavigineNotification constructor

NavigineNotification({
  1. required int id,
  2. required String title,
  3. String? content,
  4. String? imageUrl,
  5. String? imagePath,
})

Implementation

NavigineNotification({
  required this.id,
  required this.title,
  this.content,
  this.imageUrl,
  this.imagePath,
});