checkDeviceIdentifier method
Implementation
bool checkDeviceIdentifier(String simulatorName) {
switch (this) {
case Platform.ios:
return xcode.checkSimulatorIdentifier(simulatorName);
default:
throw PlatformNotImplementedException(this);
}
}