Invoke a functionInvokes a Supabase Function. See the guide for details on writing Functions. Requires an Authorization header. Invoke params generally match the Fetch API spec. Basic invocation.Specifying response type.Parsing custom headers. final res = await supabase.functions.invoke('hello', body: {'foo': 'baa'}); final data = res.data;