/// /// callable classes /// main(List args) { var call = Callable(); call('Dart'); } class Callable { call(String name) => print('call $name'); }