toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (createTime != null) 'createTime': createTime!,
  if (disabled != null) 'disabled': disabled!,
  if (events != null) 'events': events!,
  if (name != null) 'name': name!,
  if (pushOption != null) 'pushOption': pushOption!,
  if (sensitiveQueryString != null)
    'sensitiveQueryString': sensitiveQueryString!,
  if (targetUri != null) 'targetUri': targetUri!,
  if (uid != null) 'uid': uid!,
  if (updateTime != null) 'updateTime': updateTime!,
};