storePrevBatch method

  1. @override
Future<void> storePrevBatch(
  1. String prevBatch
)
override

Implementation

@override
Future<void> storePrevBatch(
  String prevBatch,
) async {
  if ((await _clientBox.getAllKeys()).isEmpty) return;
  await _clientBox.put('prev_batch', prevBatch);
  return;
}