toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final binaryDownloadUri = this.binaryDownloadUri;
final buildVersion = this.buildVersion;
final createTime = this.createTime;
final displayVersion = this.displayVersion;
final expireTime = this.expireTime;
final firebaseConsoleUri = this.firebaseConsoleUri;
final name = this.name;
final releaseNotes = this.releaseNotes;
final testingUri = this.testingUri;
final updateTime = this.updateTime;
return {
'binaryDownloadUri': ?binaryDownloadUri,
'buildVersion': ?buildVersion,
'createTime': ?createTime,
'displayVersion': ?displayVersion,
'expireTime': ?expireTime,
'firebaseConsoleUri': ?firebaseConsoleUri,
'name': ?name,
'releaseNotes': ?releaseNotes,
'testingUri': ?testingUri,
'updateTime': ?updateTime,
};
}