UserMessagingVO constructor

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

Implementation

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