setC2CReceiveMessageOpt method
Implementation
@override
Future<V2TimCallback> setC2CReceiveMessageOpt({
required List<String> userIDList,
required int opt,
}) async {
return V2TimCallback.fromJson(
formatJson(
await _channel.invokeMethod(
"setC2CReceiveMessageOpt",
buildMessageMangerParam(
{
"userIDList": userIDList,
"opt": opt,
},
),
),
),
);
}