call method
- [TParam param]
This makes RxCommand a callable class, so instead of myCommand.execute()
you can write myCommand()
Implementation
void call([TParam param]) => execute(param);
This makes RxCommand a callable class, so instead of myCommand.execute()
you can write myCommand()
void call([TParam param]) => execute(param);