pushCreated method

Future<void> pushCreated(
  1. AbsExModel model,
  2. String hint
)

Implementation

Future<void> pushCreated(AbsExModel model, String hint) async {
  await _dataCreatedlock.synchronized(() async {
    logger.info('created:${model.mid}, via $hint');
    _dataCreatedQue.add(model);
    notifyListeners();
    shouldBookSave(model.mid);
  });
}