supabase / gotrue-dart

A dart client library for GoTrue.
MIT License
46 stars 37 forks source link

fix: add default value to auth response #128

Closed dshukertjr closed 1 year ago

dshukertjr commented 1 year ago

What kind of change does this PR introduce?

Bug fix, feature, docs update, ...

What is the current behavior?

Please link any relevant issues here.

This PR adds some default values on some values.

This PR might not make sense at first glance, but the goal of this PR is to have the Flutter SDK not throw errors when the backend makes an mistake and changes the return type to nullable. Some of the values that are given default values are not very widely used. Having the app throw for parsing an object that isn't even used within the code is a pain, and this PR minimizes the effect of the mistake made on the backend.

There probably will be a few more of these PR coming!

Fixes https://github.com/supabase/supabase-flutter/issues/414