isIOS property

bool get isIOS

Implementation

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