toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bloodGlucoseMilligramsPerDeciliter =
      this.bloodGlucoseMilligramsPerDeciliter;
  final mealType = this.mealType;
  final measurementSource = this.measurementSource;
  final measurementTiming = this.measurementTiming;
  final notes = this.notes;
  final sampleTime = this.sampleTime;
  final specimen = this.specimen;
  return {
    'bloodGlucoseMilligramsPerDeciliter': ?bloodGlucoseMilligramsPerDeciliter,
    'mealType': ?mealType,
    'measurementSource': ?measurementSource,
    'measurementTiming': ?measurementTiming,
    'notes': ?notes,
    'sampleTime': ?sampleTime,
    'specimen': ?specimen,
  };
}