enableAPNs method

  1. @Deprecated('Use [ChatPushManager.bindDeviceToken] instead.')
void enableAPNs(
  1. String certName
)

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

Param certName The APNs certificate name.

Implementation

@Deprecated('Use [ChatPushManager.bindDeviceToken] instead.')

///
/// Enables Apple Push Notification service (APNs) on iOS devices.
///
/// Param [certName] The APNs certificate name.
///
///
///
void enableAPNs(String certName) {
  _pushConfig.enableAPNS = true;
  _pushConfig.apnsCertName = certName;
}