readUserCommentCount method
Future<(UResponse<int> ?, UEmptyResponse?, String?)>
readUserCommentCount({})
Implementation
Future<(UResponse<int>?, UEmptyResponse?, String?)> readUserCommentCount({
required UIdParams p,
Function(UResponse<int> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/comment/ReadUserCommentCount", p.toMap(), _Api.raw<int>(), _Api.empty, onOk, onError, onException);