NotificationData constructor

NotificationData(
  1. {String? id,
  2. String? readAt,
  3. String? profileImage,
  4. String? createdAt,
  5. int? userId,
  6. NotificationUserData? data}
)

Implementation

NotificationData({
  this.id,
  this.readAt,
  this.profileImage,
  this.createdAt,
  this.userId,
  this.data,
});