launchReplayKitBroadcast static method

Future<bool?> launchReplayKitBroadcast(
  1. String extensionName
)

This function will directly create a free RPSystemBroadcastPickerView and automatically click the View to launch ReplayKit

extensionName is your BroadCast Upload Extension target's Product Name, or to be precise, the file name of the .appex product of the extension

Implementation

static Future<bool?> launchReplayKitBroadcast(String extensionName) async {
  return await _channel.invokeMethod(
      'launchReplayKitBroadcast', {'extensionName': extensionName});
}