init method
初始化 SDK。
Param options 配置,不可为空。
Implementation
Future<void> init(ChatOptions options) async {
  _options = options;
  ChatLog.v('init: $options');
  await ClientChannel.invokeMethod(ChatMethodKeys.init, options.toJson());
  _currentUserId = await getCurrentUserId();
}