isIOS property

bool isIOS

Implementation

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