shutdownSimulator function

String? shutdownSimulator(
  1. String? uid
)

Shutsdown the simulator with the given uid

Implementation

String? shutdownSimulator(String? uid) {
  return run('xcrun', ['simctl', 'shutdown', uid!]);
}