createConsumer function

Consumer createConsumer(
  1. String url, [
  2. bool debug = true
])

Implementation

Consumer createConsumer(String url, [bool debug = true]) {
  return Consumer(url: url, debug: debug);
}