ccStreamInterrupted static method

void ccStreamInterrupted(
  1. bool isInterrupted
)

Implementation

static void ccStreamInterrupted(bool isInterrupted) {
  _streamCallBackListeners.forEach((key, value) {
    value.ccStreamInterrupted(isInterrupted);
  });
}