toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final isProduction = this.isProduction;
final targetSdkVersion = this.targetSdkVersion;
final track = this.track;
final trackId = this.trackId;
final versionCode = this.versionCode;
final versionString = this.versionString;
return {
'isProduction': ?isProduction,
'targetSdkVersion': ?targetSdkVersion,
'track': ?track,
'trackId': ?trackId,
'versionCode': ?versionCode,
'versionString': ?versionString,
};
}