Results 22 issues of Long

``` class FlutterTest extends StatefulWidget { const FlutterTest({super.key}); @override State createState() => _FlutterTestState(); } class _FlutterTestState extends State { @override Widget build(BuildContext context) { return const GetMaterialApp(home: A()); } }...

How to ensure that the generated entity has the ‘required’ keyword regardless of whether it can be null or not? raw : ``` class Test2 extends DataClass implements Insertable {...

enhancement
package-drift_dev