stop method

Future<List<int>> stop()

Implementation

Future<List<int>> stop() async {
  final bytes = await _stopCallback?.call();
  return bytes ?? [];
}