revokeMessage method Null safety
Recall a message.
Implementation
Future<NIMResult<void>> revokeMessage(
{required NIMMessage message,
String? customApnsText,
Map<String, Object>? pushPayload,
bool? shouldNotifyBeCount,
String? postscript,
String? attach}) async {
return _platform.revokeMessage(
message: message,
customApnsText: customApnsText,
pushPayload: pushPayload,
shouldNotifyBeCount: shouldNotifyBeCount,
postscript: postscript,
attach: attach);
}