tryToFindModelById method

Model? tryToFindModelById(
  1. String modelId
)

Implementation

Model? tryToFindModelById(String modelId) {
  final Model? targetModel = state.allModels.firstWhereOrNull((Model entity) => entity.id == modelId);
  return targetModel;
}