toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final artifactId = this.artifactId;
  final deployFolder = this.deployFolder;
  final groupId = this.groupId;
  final path = this.path;
  final repository = this.repository;
  final version = this.version;
  return {
    'artifactId': ?artifactId,
    'deployFolder': ?deployFolder,
    'groupId': ?groupId,
    'path': ?path,
    'repository': ?repository,
    'version': ?version,
  };
}