create static method

Future<V2TXLivePusher> create(
  1. V2TXLiveMode liveMode
)

Implementation

static Future<V2TXLivePusher> create(V2TXLiveMode liveMode) async {
  var pusher = V2TXLivePusher._create(liveMode);
  await pusher._createNativePusher(pusher._identifier, liveMode);
  return pusher;
}