pause method

void pause(
  1. String id
)

Implementation

void pause(String id) {
  final flow = _flows[id];
  flow?.pause();
}