clockStop method

Future clockStop(
  1. int id
)

Implementation

Future clockStop(int id) {
  if (id < clocks.length) return act('clockStop', args: {'clockIndex': id}, responseAction: 'clockTime');
  return Future.value(false);
}