enableFCM method
- @Deprecated('Use [ChatPushManager.bindDeviceToken] instead.')
- String appId
Enables Firebase Cloud Messaging (FCM) push on devices that support Google Play.
Param appId The app ID for FCM push.
Implementation
@Deprecated('Use [ChatPushManager.bindDeviceToken] instead.')
///
/// Enables Firebase Cloud Messaging (FCM) push on devices that support Google Play.
///
/// Param [appId] The app ID for FCM push.
///
///
///
void enableFCM(String appId) {
_pushConfig.enableFCM = true;
_pushConfig.fcmId = appId;
}