setAllReceiveMessageOptWithTimestamp method 
    
    
    
  Implementation
  Future<V2TimCallback> setAllReceiveMessageOptWithTimestamp({
  required int opt,
  required int startTimeStamp,
  required int duration,
}) async {
  if (!TIMManager.instance.isInitSDK()) {
    return V2TimCallback(code: TIMErrCode.ERR_SDK_NOT_INITIALIZED.value, desc: "sdk not init");
  }
  String userData = Tools.generateUserData('setAllReceiveMessageOptWithTimestamp');
  Completer<V2TimCallback> completer = Completer();
  NativeLibraryManager.timCallback2Future(userData, completer);
  Pointer<Void> pUserData = Tools.string2PointerVoid(userData);
  NativeLibraryManager.bindings
      .DartSetAllReceiveMessageOpt2(TIMReceiveMessageOpt.fromValue(opt), startTimeStamp, duration, pUserData);
  return completer.future;
}