isNothing<T> static method

bool isNothing<T>(
  1. Maybe<T> maybe
)

Implementation

static bool isNothing<T>(Maybe<T> maybe) {
  if (maybe._isNothing) {
    return true;
  }
  return false;
}