createFolder method
Future<(UEmptyResponse?, UEmptyResponse?, String?)>
createFolder({
- required UFileManagerCreateFolderParams p,
- required dynamic onOk(),
- required dynamic onError(),
- required dynamic onException(
- String e
Implementation
Future<(UEmptyResponse?, UEmptyResponse?, String?)> createFolder({
required UFileManagerCreateFolderParams p,
required Function(UEmptyResponse r) onOk,
required Function(UEmptyResponse e) onError,
required Function(String e) onException,
}) => _mutate("CreateFolder", p.toMap(), onOk, onError, onException);