deleteChattingHistory method Null safety

Future<void> deleteChattingHistory(
  1. NIMMessage anchor,
  2. bool ignore
)

Delete a history message.

Implementation

Future<void> deleteChattingHistory(NIMMessage anchor, bool ignore) async {
  return _platform.deleteChattingHistory(anchor, ignore);
}