stopStreaming method

Future<bool> stopStreaming()

Implementation

Future<bool> stopStreaming() async {
  try {
    final bool result = await _channel.invokeMethod('stopStreaming');
    print("stopStreaming: $result");
    return result;
  } on PlatformException catch (e) {
    print("Error stopStreaming: $e.message");
  }
  return false;
}