isIOS property
      
      bool
      get
      isIOS
      
    
    
Whether the operating system is a version of iOS.
Implementation
bool get isIOS {
  try {
    return platform.isIOS;
  } catch (e) {
    return false;
  }
}Whether the operating system is a version of iOS.
bool get isIOS {
  try {
    return platform.isIOS;
  } catch (e) {
    return false;
  }
}