recordOperationSynced method

void recordOperationSynced(
  1. String operationType
)

Record operation synced

Implementation

void recordOperationSynced(String operationType) {
  _operationsSynced++;
  _emitEvent(SyncMetricEvent(
    type: 'operation_synced',
    data: {
      'total_synced': _operationsSynced,
      'operation_type': operationType,
    },
  ));
}