toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (httpRequest != null) 'httpRequest': httpRequest!,
  if (insertId != null) 'insertId': insertId!,
  if (labels != null) 'labels': labels!,
  if (name != null) 'name': name!,
  if (operation != null) 'operation': operation!,
  if (protoPayload != null) 'protoPayload': protoPayload!,
  if (severity != null) 'severity': severity!,
  if (sourceLocation != null) 'sourceLocation': sourceLocation!,
  if (structPayload != null) 'structPayload': structPayload!,
  if (textPayload != null) 'textPayload': textPayload!,
  if (timestamp != null) 'timestamp': timestamp!,
  if (trace != null) 'trace': trace!,
};