Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Forked from Sfshaza/callable_function.dart
Last active April 8, 2020 23:50
Show Gist options
  • Save kwalrath/3723fcf3915ca935d13393b8a9f86fd5 to your computer and use it in GitHub Desktop.
Save kwalrath/3723fcf3915ca935d13393b8a9f86fd5 to your computer and use it in GitHub Desktop.
Callable object
class WannabeFunction {
String call(String a, String b, String c) => '$a $b $c!';
}
var wf = WannabeFunction();
var out = wf('Hi', 'there,', 'gang');
main() => print(out);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment