UtfException constructor

UtfException(
  1. String? callerId,
  2. UtfType type,
  3. String? goodEnding,
  4. int goodLength,
)

Default constructor

Implementation

UtfException(String? callerId, this.type, this.goodEnding, this.goodLength) {
  callerId = callerId?.trim() ?? '';
  inCaller = (callerId.isEmpty ? '' : ' in $callerId');
}