Skip to content

Commit 02bdd86

Browse files
committed
Non-const constructors.
1 parent 453effd commit 02bdd86

File tree

1 file changed

+3
-3
lines changed
  • packages/common_client/lib/src/hooks

1 file changed

+3
-3
lines changed

packages/common_client/lib/src/hooks/hook.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ final class EvaluationSeriesContext {
3535
/// The environment ID associated with the evaluation if available.
3636
final String? environmentId;
3737

38-
const EvaluationSeriesContext.internal(
38+
EvaluationSeriesContext.internal(
3939
{required this.flagKey,
4040
required this.context,
4141
required this.defaultValue,
@@ -52,7 +52,7 @@ final class IdentifySeriesContext {
5252
// If the timeout does become managed by the SDK, then it should be
5353
// added here.
5454

55-
const IdentifySeriesContext.internal({required this.context});
55+
IdentifySeriesContext.internal({required this.context});
5656
}
5757

5858
/// Contextual information provided to track stages.
@@ -69,7 +69,7 @@ final class TrackSeriesContext {
6969
/// The metric value associated with the track operation.
7070
final num? numericValue;
7171

72-
const TrackSeriesContext.internal(
72+
TrackSeriesContext.internal(
7373
{required this.key, required this.context, this.data, this.numericValue});
7474
}
7575

0 commit comments

Comments
 (0)