sendNumericWith method

void sendNumericWith(
  1. NumericReply n,
  2. List<String> params, {
  3. String? text,
})

Implementation

void sendNumericWith(
  NumericReply n,
  List<String> params, {
  String? text,
}) {
  final servername = _chatServer.servername;
  final to = nick;
  final data = Message.encodeNumericWith(
    servername,
    to,
    n,
    params,
    _encoding,
    text: text,
  );
  sendRawData(data);
}