browse method
Future<(UResponse<UFileManagerListResponse> ?, UEmptyResponse?, String?)>
browse({
- required UFileManagerBrowseParams p,
- required dynamic onOk(),
- required dynamic onError(),
- required dynamic onException(
- String e
Implementation
Future<(UResponse<UFileManagerListResponse>?, UEmptyResponse?, String?)> browse({
required UFileManagerBrowseParams p,
required Function(UResponse<UFileManagerListResponse> r) onOk,
required Function(UEmptyResponse e) onError,
required Function(String e) onException,
}) => _Api.call("/FileManager/Browse", p.toMap(), _Api.one(UFileManagerListResponse.fromMap), _Api.empty, onOk, onError, onException);