pushCreated method
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);
});
}