areInAppMessagesEnabled method
Implementation
@override
Future<bool> areInAppMessagesEnabled() async {
try {
return await methodChannel.invokeMethod('areInAppMessagesEnabled');
}
on PlatformException catch(exception) {
log.severe('Exception when getting inapp messages status: ${exception.message}');
return false;
}
}