move method

Future<void> move(
  1. String dst
)

Implementation

Future<void> move(
  String dst,
) async {
  final request = RequestRepositoryMove(
    repo: handle,
    dst: dst,
  );
  final response = await client.invoke(request);
  switch (response) {
    case ResponseNone(): return;
    default: throw UnexpectedResponse();
  }
}