toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (address != null) 'address': address!,
  if (expiration != null) 'expiration': expiration!,
  if (id != null) 'id': id!,
  if (kind != null) 'kind': kind!,
  if (params != null) 'params': params!,
  if (payload != null) 'payload': payload!,
  if (resourceId != null) 'resourceId': resourceId!,
  if (resourceUri != null) 'resourceUri': resourceUri!,
  if (token != null) 'token': token!,
  if (type != null) 'type': type!,
};