toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final datetimeValue = this.datetimeValue;
final intValue = this.intValue;
final msgValue = this.msgValue;
final name = this.name;
final stringValue = this.stringValue;
return {
'boolValue': ?boolValue,
'datetimeValue': ?datetimeValue?.toUtc().toIso8601String(),
'intValue': ?intValue,
'msgValue': ?msgValue,
'name': ?name,
'stringValue': ?stringValue,
};
}