toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currentBytes = this.currentBytes;
  final customData = this.customData;
  final diffObjectVersion = this.diffObjectVersion;
  final finalStatus = this.finalStatus;
  final notificationType = this.notificationType;
  final physicalHeaders = this.physicalHeaders;
  final requestId = this.requestId;
  final requestReceivedParamsServingInfo =
      this.requestReceivedParamsServingInfo;
  final totalBytes = this.totalBytes;
  final totalBytesIsEstimated = this.totalBytesIsEstimated;
  return {
    'currentBytes': ?currentBytes,
    'customData': ?customData,
    'diffObjectVersion': ?diffObjectVersion,
    'finalStatus': ?finalStatus,
    'notificationType': ?notificationType,
    'physicalHeaders': ?physicalHeaders,
    'requestId': ?requestId,
    'requestReceivedParamsServingInfo': ?requestReceivedParamsServingInfo,
    'totalBytes': ?totalBytes,
    'totalBytesIsEstimated': ?totalBytesIsEstimated,
  };
}