toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (delivered != null) 'delivered': delivered!,
      if (droppedAppForceStopped != null)
        'droppedAppForceStopped': droppedAppForceStopped!,
      if (droppedDeviceInactive != null)
        'droppedDeviceInactive': droppedDeviceInactive!,
      if (droppedTooManyPendingMessages != null)
        'droppedTooManyPendingMessages': droppedTooManyPendingMessages!,
      if (pending != null) 'pending': pending!,
    };