| OLD | NEW |
| 1 | 1 |
| 2 class DOMTokenList native "DOMTokenList" { | 2 class DOMTokenList native "DOMTokenList" { |
| 3 | 3 |
| 4 int length; | 4 int length; |
| 5 | 5 |
| 6 void add(String token) native; | 6 void add(String token) native; |
| 7 | 7 |
| 8 bool contains(String token) native; | 8 bool contains(String token) native; |
| 9 | 9 |
| 10 String item(int index) native; | 10 String item(int index) native; |
| 11 | 11 |
| 12 void remove(String token) native; | 12 void remove(String token) native; |
| 13 | 13 |
| 14 String toString() native; |
| 15 |
| 14 bool toggle(String token) native; | 16 bool toggle(String token) native; |
| 15 | 17 |
| 16 var dartObjectLocalStorage; | 18 var dartObjectLocalStorage; |
| 17 | 19 |
| 18 String get typeName() native; | 20 String get typeName() native; |
| 19 } | 21 } |
| OLD | NEW |