Profile constructor

const Profile({
  1. required String id,
  2. String? name,
  3. String? photo,
  4. ProfileExtra extra = const {},
})

Implementation

const Profile({
  required this.id,
  this.name,
  this.photo,
  this.extra = const {},
});