launch method
Implementation
void launch([String? appId]) {
if (null != _receiverChannel) {
_receiverChannel!.sendMessage({
'type': 'LAUNCH',
'appId': appId ?? 'CC1AD845',
});
}
}
void launch([String? appId]) {
if (null != _receiverChannel) {
_receiverChannel!.sendMessage({
'type': 'LAUNCH',
'appId': appId ?? 'CC1AD845',
});
}
}