customFunctionsProvider top-level property

Provider<List<DartBlockCustomFunction>> customFunctionsProvider
final

Derived provider that exposes the list of custom functions.

Implementation

final customFunctionsProvider = Provider<List<DartBlockCustomFunction>>((ref) {
  return ref.watch(programProvider).customFunctions;
});