calculateResultWithExistingMatrix method
CALCULATE RESULT WITH EXISTING MATRIX
Implementation
Future<List<SawResult>> calculateResultWithExistingMatrix({
required List<SawMatrix> sawMatrix,
}) async {
try {
final usecase =
SawCalculateResultWithExistingMatrixUsecase(_sawRepository);
final result = await usecase.execute(sawMatrix: sawMatrix);
return result;
} catch (e) {
rethrow;
}
}