startApplet method
Implementation
@override
Future<int?> startApplet(String app_store,String appId) async {
final version = await methodChannel.invokeMethod<int>('startApplet',{
'app_store': app_store,
'app_id': appId
});
return version;
}