isMacOS property

bool get isMacOS

Implementation

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