stop method

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

Transition the solution to a stopped state (resumable).

Implementation

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