isLogDropPush static method
Checks if the notification payload is from LogDrop.
Implementation
static Future<bool> isLogDropPush(Map<String, String> data) async {
final bool? result = await _channel.invokeMethod<bool>(
MethodNames.isLogDropPush,
{'data': data},
);
return result ?? false;
}