Dart Programming - Funzione Map.remove ()
Rimuove la chiave e il valore associato, se presente, dalla mappa. La funzione restituisce anche il valore associato alla chiave.
Sintassi
Map.remove(Object key)
Parametri
Keys - identifica la voce da eliminare.
Return Type - Restituisce il valore corrispondente alla chiave specificata.
Esempio
void main() {
Map m = {'name':'Tom','Id':'E1001'};
print('Map :${m}');
dynamic res = m.remove('name');
print('Value popped from the Map :${res}');
}
ProdurrĂ quanto segue output -
Map :{name: Tom, Id: E1001}
Value popped from the Map :Tom