isIOS property

bool isIOS

Whether the operating system is a version of iOS.

Implementation

static bool get isIOS {
  try {
    return platform.isIOS;
  } catch (e) {
    return false;
  }
}