ModelException constructor

const ModelException({
  1. required String message,
  2. Object? cause,
})

Implementation

const ModelException({
  required this.message,
  this.cause,
});