toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final beatsPerMinute = this.beatsPerMinute;
final civilTime = this.civilTime;
final physicalTime = this.physicalTime;
final utcOffset = this.utcOffset;
return {
'beatsPerMinute': ?beatsPerMinute,
'civilTime': ?civilTime,
'physicalTime': ?physicalTime,
'utcOffset': ?utcOffset,
};
}