isMacOS property

bool get isMacOS

Implementation

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