readById method
Future<(UResponse<UCategoryResponse> ?, UEmptyResponse?, String?)>
readById({})
Implementation
Future<(UResponse<UCategoryResponse>?, UEmptyResponse?, String?)> readById({
required UIdParams p,
Function(UResponse<UCategoryResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/category/ReadById", p.toMap(), _Api.one(UCategoryResponse.fromMap), _Api.empty, onOk, onError, onException);