toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (appRecoveryId != null) 'appRecoveryId': appRecoveryId!,
  if (cancelTime != null) 'cancelTime': cancelTime!,
  if (createTime != null) 'createTime': createTime!,
  if (deployTime != null) 'deployTime': deployTime!,
  if (lastUpdateTime != null) 'lastUpdateTime': lastUpdateTime!,
  if (remoteInAppUpdateData != null)
    'remoteInAppUpdateData': remoteInAppUpdateData!,
  if (status != null) 'status': status!,
  if (targeting != null) 'targeting': targeting!,
};