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,
},
);
}