Flutter: stripNulls

Omits null-valued properties from the response objects.

Examples

Strip null values from the response

final data = await supabase
  .from('users')
  .select()
  .stripNulls();