getC2CReceiveMessageOpt method Null safety

Future<V2TimValueCallback<List<V2TimReceiveMessageOptInfo>>> getC2CReceiveMessageOpt(
  1. {required List<String> userIDList}
)

Query C2C message receiving options for a user

Note: web does not support this interface

Implementation

Future<V2TimValueCallback<List<V2TimReceiveMessageOptInfo>>>
    getC2CReceiveMessageOpt({
  required List<String> userIDList,
}) async {
  return await ImFlutterPlatform.instance
      .getC2CReceiveMessageOpt(userIDList: userIDList);
}