toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fullPath = this.fullPath;
  final projectId = this.projectId;
  final relativePath = this.relativePath;
  final rootPath = this.rootPath;
  final type = this.type;
  final updateTime = this.updateTime;
  final version = this.version;
  return {
    'fullPath': ?fullPath,
    'projectId': ?projectId,
    'relativePath': ?relativePath,
    'rootPath': ?rootPath,
    'type': ?type,
    'updateTime': ?updateTime,
    'version': ?version,
  };
}