toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final displayName = this.displayName;
  final name = this.name;
  final tool = this.tool;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'displayName': ?displayName,
    'name': ?name,
    'tool': ?tool,
    'updateTime': ?updateTime,
  };
}