unknownDCS method

  1. @override
void unknownDCS(
  1. String payload
)
override

Called for a DCS payload that does not match any recognised DCS request. payload is the raw text between the DCS introducer and the string terminator.

Implementation

@override
void unknownDCS(String payload) {
  if (onUnknownSequence == null) return;
  _reportUnknownSequence();
}