toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appRecoveryId = this.appRecoveryId;
final cancelTime = this.cancelTime;
final createTime = this.createTime;
final deployTime = this.deployTime;
final lastUpdateTime = this.lastUpdateTime;
final remoteInAppUpdateData = this.remoteInAppUpdateData;
final status = this.status;
final targeting = this.targeting;
return {
'appRecoveryId': ?appRecoveryId,
'cancelTime': ?cancelTime,
'createTime': ?createTime,
'deployTime': ?deployTime,
'lastUpdateTime': ?lastUpdateTime,
'remoteInAppUpdateData': ?remoteInAppUpdateData,
'status': ?status,
'targeting': ?targeting,
};
}