UnknownEvalException constructor

UnknownEvalException({
  1. required String expression,
  2. required Map<String, String?>? scope,
  3. required Object? exception,
})

Implementation

UnknownEvalException({
  required this.expression,
  required this.scope,
  required this.exception,
});