enableAPNs method

void enableAPNs(
  1. String certName
)

Enables Apple Push Notification service (APNs) on iOS devices.

Param certName The APNs certificate name.

Implementation

void enableAPNs(String certName) {
  _pushConfig.enableAPNS = true;
  _pushConfig.apnsCertName = certName;
}