toJson method

Map<String, Object?> toJson()

Encodes the Android ship result.

Implementation

Map<String, Object?> toJson() => <String, Object?>{
  'platform': platform.value,
  'version': version,
  'tag': tag,
  'artifactId': artifactId,
  'buildNumber': buildNumber,
  'testingTrack': testingTrack,
  'testingTracks': testingTracks,
  'shippedTracks': shippedTracks,
  'productionTrack': ?productionTrack,
  'githubReleaseUrl': githubReleaseUrl,
};