isIOS property

bool get isIOS

Implementation

static bool get isIOS {
  if (kIsWeb) {
    return false;
  } else {
    return Platform.isIOS;
  }
}