execAsync method

Future execAsync(
  1. dynamic prepResult
)

Async execution logic - calls orchAsync.

This method implements Python's AsyncFlow pattern where execAsync calls _orch_async.

Implementation

Future<dynamic> execAsync(dynamic prepResult) async {
  return orchAsync(shared);
}