removeSatellite method
Removes the satellite from the globe.
The id parameter represents the id of the satellite to be removed.
Example usage:
controller.removeSatellite('iss');
Implementation
void removeSatellite(String id) {
satellites.removeWhere((element) => element.id == id);
notifyListeners();
}