checkDeviceIdentifier method

bool checkDeviceIdentifier(
  1. String simulatorName
)

Implementation

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