UserMessagingModel constructor

UserMessagingModel({
  1. String? uid,
  2. DocumentSnapshot<Object?>? snapshot,
  3. String? userId,
  4. double? createdAt,
  5. double? updatedAt,
  6. Map<String, FCMToken>? fcmTokens,
})

Implementation

UserMessagingModel({
  this.uid,
  this.snapshot,
  this.userId,
  this.createdAt,
  this.updatedAt,
  this.fcmTokens,
});