toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (ActionResult != null) 'ActionResult': ActionResult!,
  if (accessList != null) 'accessList': accessList!,
  if (content != null) 'content': content!,
  if (headers != null) 'headers': headers!,
  if (properties != null) 'properties': properties!,
  if (reasonPhrase != null) 'reasonPhrase': reasonPhrase!,
  if (statusCode != null) 'statusCode': statusCode!,
  if (timestamp != null) 'timestamp': timestamp!,
  if (uRI != null) 'uRI': uRI!,
  if (verb != null) 'verb': verb!,
};