setMessageLocalEx method

Future setMessageLocalEx({
  1. required String conversationID,
  2. required String clientMsgID,
  3. required String localEx,
  4. String? operationID,
})

Implementation

Future setMessageLocalEx({
  required String conversationID,
  required String clientMsgID,
  required String localEx,
  String? operationID,
}) {
  return _channel.invokeMethod(
      'setMessageLocalEx',
      _buildParam({
        "conversationID": conversationID,
        "clientMsgID": clientMsgID,
        "localEx": localEx,
        "operationID": Utils.checkOperationID(operationID),
      }));
}