instance property

SupabaseAuth instance

A SupabaseAuth instance.

If not initialized, an AssertionError is thrown

Implementation

static SupabaseAuth get instance {
  assert(
    _instance._initialized,
    'You must initialize the supabase instance before calling Supabase.instance',
  );

  return _instance;
}