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