Profile constructor

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

Implementation

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