launch method
Places a view integration to the native integration stack.
Implementation
Future<void> launch() async {
return await IaBaseMethods._channel.invokeMethod(
launchMethodId,
{
launchMethodArgId: Platform.isAndroid ? viewId.substring(0, 1).toUpperCase() + viewId.substring(1) : viewId,
},
);
}