saveCar method
Implementation
void saveCar(String floorIdentifier, Coordinate coordinate) async {
final message = {
"floorIdentifier": floorIdentifier,
"coordinate": coordinate.toMap(),
};
_sendMessage(WV_MESSAGE_FIND_MY_CAR_SAVE, message);
}