defined method

Future<bool> defined()

Returns TRUE if we have the value in storage, otherwise FALSE.

Implementation

Future<bool> defined() async {
  if (this.isDisposed) return false; //null;

  return (await this.read()) != null;
}