clockStart method

Future clockStart(
  1. int id
)

Implementation

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