toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final notes = this.notes;
final sampleTime = this.sampleTime;
final weightGrams = this.weightGrams;
return {
'notes': ?notes,
'sampleTime': ?sampleTime,
'weightGrams': ?weightGrams,
};
}