has method

  1. @override
bool has(
  1. String id
)
override

Returns whether this adapter has a value for the experiment with the given id.

Implementation

@override
bool has(String id) => _values.containsKey(id) || _adapter.has(id);