run method

Future<Either<Exception, dynamic>> run()

Implementation

Future<Either<Exception, dynamic>> run() async {
  try {
    final res = await _worker.runAPI(_request);
    Logger.printMessage('DesignFlowQueryRepository.run $res');
    return Right(res);
  } catch (e) {
    Logger.printError('DesignFlowQueryRepository.run $e');
    return Left(e as Exception);
  }
}