getAllFeatures method

Map<String, Object?> getAllFeatures()

Get all known features and their current values.

Implementation

Map<String, Object?> getAllFeatures() {
  if (_featureValues.isNotEmpty) {
    return Map<String, Object?>.from(_featureValues);
  }
  return Map<String, Object?>.from(_diskCache);
}