httpContinuous static method

String httpContinuous(
  1. bool enable
)

Keep reading a resource that keeps being updated. (default disabled)

Implementation

static String httpContinuous(bool enable) {
  return enable ? '--http-continuous' : '--no-http-continuous';
}