Adrian
Adrian
Thanks but I'd rather not show it on a public forum. What should I do with the IP address for my laptop?
so it was DHCP (I connected a keyboard & monitor to the Raspberry Pi). The only thing now is that I can't remember my login! ha! (I think I remember...
Basically my saved ip address was wrong. I found the admin & password too! Yup, thanks!!!!
I have one camera (camera1) that can upload files to google drive. Adding another camera requires me to obtain a new key from google drive. Is there a way to...
Thanks @bdlukaa, so is the `data` variable json? Do you use the `json_serializable` package to create your `fromJson` code?
thanks @bdlukaa, that is very helpful and gets me a bit further. It would still be helpful if it were more type safe of course and the models were generated...
So, I've tried some of these solutions out. 1. swagger-codegen generate version 2 isn't compatible with null safety so I couldn't use that 2. there is a package called `swagger_dart_code_generator`...
I wrote this as a simple ORM. https://github.com/atreeon/easy_orm It does column select like this: ``` await Db().products.selectQuery2Cols( ((e) => e.supplier_id), ((e) => e.category_id)); ``` ...of course you would need a...
Dart 3 is in the flutter Beta version now which would suggest it will be in the next release; that will help quite a lot.
I'm thinking if multiple columns are required then instead of returning a Tuple the user could define their own anonymous classes. C#s Entity Framework makes good use of that but...I'm...