ccStreamInProgress static method

void ccStreamInProgress(
  1. bool isInProgress
)

Implementation

static void ccStreamInProgress(bool isInProgress) {
  _streamCallBackListeners.forEach((key, value) {
    value.ccStreamInProgress(isInProgress);
  });
}