toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final modulePath = this.modulePath;
  final moduleVersion = this.moduleVersion;
  final repositoryLocation = this.repositoryLocation;
  final repositoryName = this.repositoryName;
  final repositoryProjectId = this.repositoryProjectId;
  final sourcePath = this.sourcePath;
  return {
    'modulePath': ?modulePath,
    'moduleVersion': ?moduleVersion,
    'repositoryLocation': ?repositoryLocation,
    'repositoryName': ?repositoryName,
    'repositoryProjectId': ?repositoryProjectId,
    'sourcePath': ?sourcePath,
  };
}