Dart obtient l'emplacement de la mémoire de la variable

//It's not the memory location as that cannot be accessed
//This returns the hasCode of the object, which is unique and can be used as its id
identityHashCode(Object object);
SeriousMonk