toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appId = this.appId;
final appInstallReason = this.appInstallReason;
final appInstallSource = this.appInstallSource;
final appInstallTime = this.appInstallTime;
final appType = this.appType;
return {
'appId': ?appId,
'appInstallReason': ?appInstallReason,
'appInstallSource': ?appInstallSource,
'appInstallTime': ?appInstallTime,
'appType': ?appType,
};
}