toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final updateTime = this.updateTime;
  final value = this.value;
  return {
    'createTime': ?createTime?.toUtc().toIso8601String(),
    'updateTime': ?updateTime?.toUtc().toIso8601String(),
    'value': ?value,
  };
}