Sleep_AllDay
Sleep_AllDay
## Problem ```dart @JsonSerializable() class MyClass { final Map inv; MyClass({required this.inv}); factory MyClass.fromJson(Map json) => _$MyClassFromJson(json); Map toJson() => _$MyClassToJson(this); } enum Slot { @JsonValue(1) slot1, @JsonValue(2) slot2, @JsonValue('3')...
When calling the connection.invoke, adding a onProgressCallBack would be nice. Common usages: indicating image upload progress in chat apps I could help implement this feature.
It's quite common to use the sqlite3 in memory feature to setup a simple test db. But the currently support closes the in memory database after migration which is basically...