startBuild method

void startBuild()

Builds all registered targets, including those not from this client.

Note this will wait for any ongoing build to finish before starting a new one.

Implementation

void startBuild() {
  var request = BuildRequest();
  _channel.sink.add(jsonEncode(_serializers.serialize(request)));
}