getUserInfo method
Implementation
Future<UserInfoResponse> getUserInfo() async {
final result = await NativeSDKBridgeV3.getUserInfo(
connectionId: connectionId,
);
ExceptionHandler.checkException(result);
final object = UserInfoResponse.fromJson(result);
return object;
}