increment method

Future<void> increment()

Implementation

Future<void> increment() async {//增加记数方法
  _controller.add(++_count);
}