enableFCM method

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