ObjectBoxException constructor

ObjectBoxException(
  1. {String dartMsg,
  2. int nativeCode,
  3. String nativeMsg}
)

Implementation

ObjectBoxException({String dartMsg, int nativeCode, String nativeMsg})
    : dartMsg = dartMsg,
      nativeCode = nativeCode,
      nativeMsg = nativeMsg;