availableFunctionsProvider top-level property
Implementation
final availableFunctionsProvider =
Provider.family<List<DartBlockFunction>, List<DartBlockDataType>>((
ref,
restrictToDataTypes,
) {
final customFunctions = ref.watch(
availableCustomFunctionsProvider(restrictToDataTypes),
);
final nativeFunctions = ref.watch(
availableNativeFunctionsProvider(restrictToDataTypes),
);
return [...customFunctions, ...nativeFunctions];
});