toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final appEngineHttpRequest = this.appEngineHttpRequest;
  final createTime = this.createTime;
  final dispatchCount = this.dispatchCount;
  final dispatchDeadline = this.dispatchDeadline;
  final firstAttempt = this.firstAttempt;
  final httpRequest = this.httpRequest;
  final lastAttempt = this.lastAttempt;
  final name = this.name;
  final responseCount = this.responseCount;
  final scheduleTime = this.scheduleTime;
  final view = this.view;
  return {
    'appEngineHttpRequest': ?appEngineHttpRequest,
    'createTime': ?createTime,
    'dispatchCount': ?dispatchCount,
    'dispatchDeadline': ?dispatchDeadline,
    'firstAttempt': ?firstAttempt,
    'httpRequest': ?httpRequest,
    'lastAttempt': ?lastAttempt,
    'name': ?name,
    'responseCount': ?responseCount,
    'scheduleTime': ?scheduleTime,
    'view': ?view,
  };
}