Dart: Callable class
Apr 2, 2024 · 2 min read · Dart allows the user to create a callable class which allows the instance of the class to be called as a function. To allow an instance of your Dart class to be called like a function, implement the call() method. Syntax: class class_name { ... // ...
Join discussion


















