isBroadcastSupported method

Future<bool> isBroadcastSupported()

Implementation

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