What do you call a Dart?

In Dart, all functions are objects with type Function since Dart is a pure object-oriented language. All functions inherently have the call method. The call method is used to call a function like someFunction() . This is the same as writing someFunction.

Read more