Simon Binder
Simon Binder
I also just realized that [this fork](https://github.com/dnfield/lottie-flutter) already implements everything except for dashed paths, but also has dashed paths checked in it's todo list. @dnfield Can you please clarify whether...
Thank you! I was already using `obtainAccessCredentialsViaMetadataServer`, seems like I overlooked `clientViaMetadataServer`. Do you know if there's a way to extract the project id from the client? I still need...
This is a bit more than I asked for here, but I had a rather simple idea on how to provide cloud services without much effort: Maybe this package can...
Nothing obvious comes to mind right away. Are you calling `shutdownAll` anywhere? This exception should only appear if the isolate server _knows_ its shutting down.
You can use [`runZonedGuarded`](https://api.dart.dev/stable/2.14.4/dart-async/runZonedGuarded.html) to add an exception handler around a block of code (including async code), but Drift doesn't provide anything like that. I'm still not entirely sure what...
> I was wondering, where does the CREATE statement go, I cannot find it somewhere. The index should only get one field in the generated database: https://github.com/simolus3/moor/blob/ac20d9b324e79d5ae012e36bf691c490df473564/moor/test/data/tables/custom_tables.g.dart#L1402-L1403 If it's not...
> what I noticed though, is, when I use queries, after the query, I cannot create Index Yeah, the order of statements in moor files has to be 1. imports...
I'm not sure what you mean with "handle `uploaded` in BaseDao". Can you be more specific on what exactly you're trying to do? Be aware that inheritance with table classes...
You can use ```dart Future deleteById(String id) { final idColumn = table.columnsByName['id'] as Expression; return (delete(_table)..where((_) => idColumn.equals(id)).go(); } ```
This should work, but it's some questionable Dart: ```dart Future createEntryFromModel(T entity) async { final copy = (entity as dynamic).copyWith; final version = await getCurrentEntityVersion(); final result = Function.apply(copy, [],...