79631596

Date: 2025-05-21 08:45:22
Score: 2
Natty:
Report link

Does this resolve your issue?

@freezed
class CounterState with _$CounterState {
  const factory CounterState({required int count}) = _CounterState;

  factory CounterState.initial() => const CounterState(count: 0);
}

Instead of required count, replace that with required int count.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve your issue?
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: DevQt