ExceptionWithStack class
class ExceptionWithStack {
final dynamic error;
final dynamic stack;
ExceptionWithStack(dynamic this.error, dynamic this.stack);
toString() => "$error\n$stack";
}
Constructors
Methods
dynamic toString() #
Returns a string representation of this object.
docs inherited from Object
toString() => "$error\n$stack";