move method
Future<(UResponse<UFileManagerEntryResponse> ?, UEmptyResponse?, String?)>
move({
- required UFileManagerMoveParams p,
- required dynamic onOk(),
- required dynamic onError(),
- required dynamic onException(
- String e
Implementation
Future<(UResponse<UFileManagerEntryResponse>?, UEmptyResponse?, String?)> move({
required UFileManagerMoveParams p,
required Function(UResponse<UFileManagerEntryResponse> r) onOk,
required Function(UEmptyResponse e) onError,
required Function(String e) onException,
}) => _entry("Move", p.toMap(), onOk, onError, onException);