NotificationInfo constructor

NotificationInfo({
  1. required String senderName,
  2. required Uint8List imageBytes,
  3. required String content,
  4. required String value,
  5. dynamic onPressed(
    1. String payload
    )?,
})

Implementation

NotificationInfo({
  required this.senderName,
  required this.imageBytes,
  required this.content,
  required this.value,
  this.onPressed,
});