BodyData constructor

BodyData({
  1. String? userId,
  2. String? userKey,
  3. required String id,
  4. required DateTime date,
  5. double? weight,
  6. double? fat,
  7. required Source source,
})

Implementation

BodyData({
  this.userId,
  this.userKey,
  required this.id,
  required this.date,
  this.weight,
  this.fat,
  required this.source,
});