browse method

Future<(UResponse<UFileManagerListResponse>?, UEmptyResponse?, String?)> browse({
  1. required UFileManagerBrowseParams p,
  2. required dynamic onOk(
    1. UResponse<UFileManagerListResponse> r
    ),
  3. required dynamic onError(
    1. UEmptyResponse r
    ),
  4. required dynamic onException(
    1. 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);