isFuchsia property

bool isFuchsia

Whether the operating system is a version of Fuchsia.

Implementation

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