generativeResolverProvider top-level property
The active GenerativeResolver for a render.
Defaults to the NoGenerativeResolver (a no-op when nothing in the tree is
generated, a clear error otherwise), so the standard Fluvie flow is
unaffected and pays nothing. Override it with fluvie_ai's resolver to
produce Generative* media; tests override it with a fake.
Implementation
final generativeResolverProvider = Provider<GenerativeResolver>(
(ref) => const NoGenerativeResolver(),
);