read method
Future<(UResponse<List<UCommentResponse> > ?, UEmptyResponse?, String?)>
read({
- required UCommentReadParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<List<UCommentResponse>>?, UEmptyResponse?, String?)> read({
required UCommentReadParams p,
Function(UResponse<List<UCommentResponse>> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/comment/Read", p.toMap(), _Api.list(UCommentResponse.fromMap), _Api.empty, onOk, onError, onException);