enableAPNs method
- @Deprecated('Use [ChatPushManager.bindDeviceToken] instead.')
- 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;
}