isPushSecure static method

Future<bool> isPushSecure(
  1. Map notification
)

Method to on check if is push secure

Callback with the success

Implementation

static Future<bool> isPushSecure(
  Map<dynamic, dynamic> notification) async {
    return await _indigitall.invokeMethod(_ACTION_IS_PUSH_SECURE, notification);
  }