Open danylo-safonov-solid opened 8 months ago
class SomeState extends State<Some> { final X? x; void initState() { x = widget.x; } }
Can be
class SomeState extends State<Some> { late final x = widget.x; }
Can be