present method

bool present()

Implementation

bool present() {
  return fold(
    onValue: (_) => true,
    onEmpty: () => false,
  );
}