profilePushId static method

void profilePushId(
  1. String pushTypeKey,
  2. String pushId
)

保存用户推送 ID 到用户表

使用示例: SensorsAnalyticsFlutterPlugin.profilePushId("jiguang","12123123");

Implementation

static void profilePushId(String pushTypeKey, String pushId) {
  _channel.invokeMethod("profilePushId", [pushTypeKey, pushId]);
}