isMacOS property

bool isMacOS

Whether the operating system is a version of macOS.

Implementation

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