exists method

FutureOr<bool> exists(
  1. MKey key
)
inherited

Whether the record exists = makes sure the data set is loaded first.

Implementation

FutureOr<bool> exists(MKey key) => checked(() => containsKey(key));