parent property

  1. @optional
StackTrace? parent

Asynchronous JavaScript stack trace that preceded this stack, if available.

Implementation

@optional
StackTrace? get parent =>
    json['parent'] == null ? null : StackTrace(json['parent']);