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