update method
Future<(UEmptyResponse?, UEmptyResponse?, String?)>
update({
- required UNotificationUpdateParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UEmptyResponse?, UEmptyResponse?, String?)> update({
required UNotificationUpdateParams p,
Function(UEmptyResponse r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Notification/Update", p.toMap(), _Api.empty, _Api.empty, onOk, onError, onException);