You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gender is defined as an enum in Postgres, which accepts multiple values that could have {male, female, other}
gender gender_enum[] DEFAULT '{female}',
I can see in the PgAdmin4 using a select query that displays gender as {male, female} value but when I use the select command in dart code it returns in _Uint8ArrayView format.
How can I solve this issue, please mention the best practices to deal with Enum list?
Thank's in advance.
The text was updated successfully, but these errors were encountered:
gender is defined as an enum in Postgres, which accepts multiple values that could have {male, female, other}
gender gender_enum[] DEFAULT '{female}',
I can see in the PgAdmin4 using a select query that displays gender as {male, female} value but when I use the select command in dart code it returns in _Uint8ArrayView format.
How can I solve this issue, please mention the best practices to deal with Enum list?
Thank's in advance.
The text was updated successfully, but these errors were encountered: