setAccountInfo method
Implementation
@override
Future<void> setAccountInfo(
String id,
String? name,
Map<String, Object?> extraInfo,
) async {
final jsAccount = JsAccount(id: id, name: name);
DD_LOGS?.setAccount(jsAccount);
DD_RUM?.setAccount(jsAccount);
await addAccountExtraInfo(extraInfo);
}