Ali

Results 33 comments of Ali

After adding Id **register.dart** ``` class RegisterModel { int id; String download; String extraCode; String wcfUrl; String companyName; int companyId; int companyPersonId; String imeiCode; String registerCode; RegisterModel( this.id, this.download, this.extraCode,...

I even tried a simpler table: **tables.drift:** ``` import 'package:app/model/combo.dart'; CREATE TABLE Combo ( ComboId INTEGER PRIMARY KEY, Value TEXT NOT NULL ) WITH ComboModel; ``` **combo.dart:** ``` class ComboModel...

I moved to a newer test project and its still happening ``` environment: sdk: ">=2.16.2

Ye I did remove it. It was actually the goal of creating a new project to test without `// @dart=2.12` Also tried flutter clean and did not work

This is the content of the file you asked for: ``` import 'package:crm_ideal_app/model/register.dart' as i0; typedef T0 = i0.RegisterModel; ```

here is the related content: ``` { "name": "drift", "rootUri": "file:///C:/Users/Dev/AppData/Local/Pub/Cache/hosted/pub.dev/drift-2.7.0", "packageUri": "lib/", "languageVersion": "2.19" }, { "name": "drift_dev", "rootUri": "file:///C:/Users/Dev/AppData/Local/Pub/Cache/hosted/pub.dev/drift_dev-2.7.0", "packageUri": "lib/", "languageVersion": "2.17" }, ```

need null safety

Ok so I will test it again and let you know

this may prove that `isConnected()` not working properly this is my code: ``` SignalR signalR = SignalR( '', "", hubMethods: ["hubMethod1", "hubMethod2"] statusChangeCallback: (status) => print(status), hubCallback: (methodName, message) =>...