toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ActionResult = this.ActionResult;
  final accessList = this.accessList;
  final content = this.content;
  final headers = this.headers;
  final properties = this.properties;
  final reasonPhrase = this.reasonPhrase;
  final statusCode = this.statusCode;
  final timestamp = this.timestamp;
  final uRI = this.uRI;
  final verb = this.verb;
  return {
    'ActionResult': ?ActionResult,
    'accessList': ?accessList,
    'content': ?content,
    'headers': ?headers,
    'properties': ?properties,
    'reasonPhrase': ?reasonPhrase,
    'statusCode': ?statusCode,
    'timestamp': ?timestamp,
    'uRI': ?uRI,
    'verb': ?verb,
  };
}