clockReset method

Future clockReset(
  1. int id
)

Implementation

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