Profile constructor

Profile({
  1. required String userId,
  2. required String id,
  3. double? height,
  4. required Source source,
})

Implementation

Profile({
  required this.userId,
  required this.id,
  this.height,
  required this.source,
});