toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currentVersion = this.currentVersion;
  final name = this.name;
  final pendingVersions = this.pendingVersions;
  return {
    'currentVersion': ?currentVersion,
    'name': ?name,
    'pendingVersions': ?pendingVersions,
  };
}