tryToFindModelByIdChecked method

Future<Model?> tryToFindModelByIdChecked(
  1. String modelId
)

Implementation

Future<Model?> tryToFindModelByIdChecked(String modelId) async {
  await waitUntilLoading();
  return tryToFindModelById(modelId);
}