isBroadcasting method

  1. @override
Future<bool> isBroadcasting()
override

Implementation

@override
Future<bool> isBroadcasting() async {
  final flag = await _methodChannel.invokeMethod('isBroadcasting');
  return flag == true || flag == 1;
}