toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final doubleValue = this.doubleValue;
final integerValue = this.integerValue;
final microsValue = this.microsValue;
return {
'doubleValue': ?doubleValue,
'integerValue': ?integerValue,
'microsValue': ?microsValue,
};
}