toJson method

Map<String, dynamic> toJson()

Implementation

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