BodyData constructor

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

Implementation

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