start method

Future<SolutionHandle> start(
  1. ClientContext? ctx,
  2. SolutionHandle request
)

Transition the solution to a running state.

Implementation

$async.Future<SolutionHandle> start(
        $pb.ClientContext? ctx, SolutionHandle request) =>
    _client.invoke<SolutionHandle>(
        ctx, 'Solutions', 'Start', request, SolutionHandle());