isPushing method
Whether the stream ingest is pushing
Return:
- 1: Ingesting is in progress
- 0: Ingest has been stopped
Implementation
Future<V2TXLiveCode> isPushing() async {
var result = await _channel.invokeMethod('isPushing', {});
return _liveCodeWithResult(result);
}