setFlowControl method

Future<void> setFlowControl (int flowControl)

Sets the flow control parameter.

Implementation

Future<void> setFlowControl(int flowControl) async {
  return await _channel
      .invokeMethod("setFlowControl", {"flowControl": flowControl});
}