shapeSubscriptionSyncStatusChanged method
Notification for shape subscription sync status changes. Every notification will include a key that uniquely identifies the shape for which the sync status changed, as well as the new sync status.
Implementation
@override
void shapeSubscriptionSyncStatusChanged(
String dbName,
String key,
SyncStatus status,
) {
if (!_hasDbName(dbName)) {
return;
}
_emitShapeSubscriptionSyncStatusChange(dbName, key, status);
}