Closed Achraf-cyber closed 2 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
supabase-schema-dart-class-generator | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Aug 30, 2024 7:17am |
uuh https://github.com/mmvergara/supadart/pull/69/commits/983f88bab32dfc336c14e4281b3ea876d233cbcf we pr'd at the same time lol
Updated the toJson method to encode Dart bool values as JSON booleans instead of strings. Previously,
boolCol.toString()
was used, which caused issues because the fromJson method expected booleans to be encoded as JSON booleans. ReplacedboolCol.toString()
withboolCol
to resolve this issue.