viceStream property

Stream<MethodCall> viceStream

Implementation

static Stream<MethodCall> get viceStream {
  if (_subChannel == null) {
    _subChannel = MethodChannel(_subChannelName)
      ..setMethodCallHandler(_onSubChannelMethodHandler);
  }
  if (_subStreamController == null) {
    _subStreamController = StreamController<MethodCall>.broadcast();
  }
  return _subStreamController!.stream;
}