UnknownRecError constructor

UnknownRecError({
  1. String? msg,
  2. HRef? id,
})

Implementation

UnknownRecError({String? msg, HRef? id})
    : assert(msg != null || id != null),
      super(msg ?? id.toString());