resetSticker method
Implementation
Future<int> resetSticker(dynamic instance) async {
if (Platform.isAndroid) {
return await ($instance as BasicHelper).invoke<int>(
method: 'resetSticker',
args: [instance],
addGlobalEngine: false,
);
} else if (Platform.isIOS) {
return await ($instance as BasicHelper).invoke<int>(
method: 'resetSticker:',
args: [instance],
addGlobalEngine: false,
);
} else {
throw UnsupportedError('Unsupported platform');
}
}