toJson method

Map<String, dynamic> toJson()

Implementation

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