toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final installState = this.installState;
final productId = this.productId;
final versionCode = this.versionCode;
return {
'installState': ?installState,
'productId': ?productId,
'versionCode': ?versionCode,
};
}