Kilian Schulte
Kilian Schulte
I also like the second approach more, but it seems to be limited to simple queries on the single table, so no joins or more complex queries. Is that enough...
Ok sounds good.
This was done for this: https://pub.dev/documentation/postgres/latest/postgres/PostgreSQLConnection/query.html and should be replaced by a single '@' by the postgres package. Not sure if thats a bug with the postgres package then. Can...
@definitelyme Thanks for this feature, I needed it in a project of mine. However I'm experiencing some weird behavior in the text wrapping. See this example: These are two `AutoSizeText`...
@definitelyme Any update on this?
@PcolBP Is this after using the change I proposed in my comment before? If not its the same issue.
Sorry, private classes are not supported atm.
I need to revisit the code. I know right now I'm explicitly forbidding private classes but I don't know anymore why.
This behaviour is documented in the docs: https://pub.dev/documentation/dart_mappable/latest/topics/Generics-topic.html in the Typeless Serialization section. The important bit: > It only takes effect when the static type T and the runtime type...
Initializing mappers is idempotent, meaning executing it more than once has no effect and is safe to do. You can basically call it whenever as long as its before the...