Profile constructor
const
Profile({
- required String id,
- String? name,
- String? photo,
- ProfileExtra extra = const {},
Implementation
const Profile({
required this.id,
this.name,
this.photo,
this.extra = const {},
});