exit property
Implementation
Future<BusExit> get exit {
return platform(
android: (pool) async => BusExit.android(await _androidModel.getExit()),
ios: (pool) async => BusExit.ios(
await _iosModel.get_enterLocation(),
await _iosModel.get_enterName(),
),
);
}