UserInfoPublic constructor

UserInfoPublic({
  1. int? id,
  2. required String userName,
  3. String? fullName,
  4. required DateTime created,
  5. String? imageUrl,
})

Implementation

UserInfoPublic({
  this.id,
  required this.userName,
  this.fullName,
  required this.created,
  this.imageUrl,
});