We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1410ff commit 3ec2f3fCopy full SHA for 3ec2f3f
lib/src/value/external/function.dart
@@ -16,9 +16,9 @@ import 'value.dart';
16
abstract class SassFunction extends Value {
17
/// The callable that this function invokes.
18
///
19
- /// Note that this is typed as an [AsyncCallback] so that it will work with
+ /// Note that this is typed as an [AsyncCallable] so that it will work with
20
/// both synchronous and asynchronous evaluate visitors, but in practice the
21
- /// synchronous evaluate visitor will crash if this isn't a [Callback].
+ /// synchronous evaluate visitor will crash if this isn't a [Callable].
22
AsyncCallable get callable;
23
24
factory SassFunction(AsyncCallable callable) = internal.SassFunction;
0 commit comments