details property

List<Object> details

Set if the error occurred on the DevTools side before the expression is evaluated, contains the array of the values that may be substituted into the description string to provide more information about the cause of the error.

Implementation

List<Object> get details =>
    _wrapped.details.toDart.cast<JSAny>().map((e) => e.dartify()!).toList();
void details=(List<Object> v)

Implementation

set details(List<Object> v) {
  _wrapped.details = v.toJSArray((e) => e.jsify()!);
}