Exposure constructor

const Exposure({
  1. required String flagKey,
  2. String? variant,
  3. String? experimentKey,
  4. Map<String, Object?>? metadata,
  5. int? time,
})

Creates an Exposure for the given flagKey.

Implementation

const Exposure({
  required this.flagKey,
  this.variant,
  this.experimentKey,
  this.metadata,
  this.time,
});