updateStickTopSession method Null safety

Future<NIMResult<void>> updateStickTopSession(
  1. String sessionId,
  2. NIMSessionType sessionType,
  3. String ext
)

Update the extension field of the pinned conversation.

Implementation

Future<NIMResult<void>> updateStickTopSession(
    String sessionId, NIMSessionType sessionType, String ext) {
  return _platform.updateStickTopSession(sessionId, sessionType, ext);
}