isLogDropPush static method

Future<bool> isLogDropPush(
  1. Map<String, String> data
)

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;
}