reSendMessage method Null safety

Future<V2TimValueCallback<V2TimMessage>> reSendMessage(
  1. {required String msgID,
  2. bool onlineUserOnly = false,
  3. Object? webMessageInstatnce}
)

Resend a message

Note webMessageInstatnce is mandatory when using on the web side

Implementation

Future<V2TimValueCallback<V2TimMessage>> reSendMessage(
    {required String msgID,
    bool onlineUserOnly = false,
    Object? webMessageInstatnce}) async {
  return await ImFlutterPlatform.instance.reSendMessage(msgID: msgID);
}