isFuchsia property

bool get isFuchsia

Implementation

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