setInAppMessageAsUnseen method
Implementation
@override
Future<void> setInAppMessageAsUnseen(String messageId) async {
try {
var result = await methodChannel.invokeMethod('setInAppMessageAsUnseen', { 'messageId': messageId });
if (result != null) log.warning(result);
}
on PlatformException catch(exception) {
log.severe('Exception when setting inapp message as unseen: ${exception.message}');
}
}