I'm working on a Flutter project where I need to save data from a PlacePicker into a Supabase table. Specifically, I'm struggling with how to properly store the LatLng data retrieved from the PlacePicker in my Supabase table. The data returned by the PlacePicker looks like this: LatLng(lat: 49.00, lng: 4.30)
.
I've tried various approaches and data types for the column in my Supabase table, but I keep encountering errors. Can someone provide guidance on the best way to handle and store this LatLng data in my Supabase table?
Any help or suggestions would be greatly appreciated. Thank you!