move method
Moves the specified address resource.
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(MoveAddressRequest request) async {
if (isClosed) throw StateError('Service is closed');
if (_move case final move?) {
return move(request);
}
throw UnsupportedError('move');
}