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;
  }
}