setLocalCustomInt method Null safety

Future<V2TimCallback> setLocalCustomInt(
  1. {required String msgID,
  2. required int localCustomInt}
)

Set custom message data and can be used to mark whether a voice or video message is played (saved locally, will not be sent to the peer end, and will become invalid after the app is uninstalled and reinstalled)

web not supported

Implementation

Future<V2TimCallback> setLocalCustomInt({
  required String msgID,
  required int localCustomInt,
}) async {
  return ImFlutterPlatform.instance
      .setLocalCustomInt(msgID: msgID, localCustomInt: localCustomInt);
}