79472158

Date: 2025-02-27 09:25:31
Score: 1
Natty:
Report link

I believe the error might be coming from this line:
debugType: kDebugMode ? '${runtimeType.toString()}' : '',.

You could try simplifying it to:
debugType: kDebugMode ? runtimeType.toString() : '',
or
debugType: kDebugMode ? '${runtimeType.toString() ?? ''}' : '',.

Let me know if this helps! 😊

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jeban_antony