onNetmeraHuaweiPushMessageReceived static method

dynamic onNetmeraHuaweiPushMessageReceived(
  1. String? from,
  2. Map data
)

Implementation

static onNetmeraHuaweiPushMessageReceived(String? from, Map data) {
  if (Platform.isAndroid) {
    data["from"] = from ?? "";
    _platform.invokeMethod(_ON_NETMERA_PUSH_MESSAGE_RECEIVED, data);
  }
}