move method

  1. @override
Future<Operation> move(
  1. MoveFirewallPolicyRequest request
)
override

Moves the specified firewall policy.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<Operation> move(MoveFirewallPolicyRequest request) async {
  if (isClosed) throw StateError('Service is closed');

  if (_move case final move?) {
    return move(request);
  }
  throw UnsupportedError('move');
}