| OLD | NEW |
| 1 | 1 |
| 2 class Geolocation native "Geolocation" { | 2 class Geolocation native "*Geolocation" { |
| 3 | 3 |
| 4 void clearWatch(int watchId) native; | 4 void clearWatch(int watchId) native; |
| 5 | 5 |
| 6 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba
ck errorCallback = null]) native; | 6 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba
ck errorCallback = null]) native; |
| 7 | 7 |
| 8 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err
orCallback = null]) native; | 8 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err
orCallback = null]) native; |
| 9 | 9 |
| 10 var dartObjectLocalStorage; | 10 var dartObjectLocalStorage; |
| 11 | 11 |
| 12 String get typeName() native; | 12 String get typeName() native; |
| 13 } | 13 } |
| OLD | NEW |