Dart Documentationperf_apiProfilerError

ProfilerError class

class ProfilerError extends Error {
 final String message;
 ProfilerError(String this.message);
 toString() => message;
}

Extends

Error > ProfilerError

Constructors

new ProfilerError(String message) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
ProfilerError(String this.message);

Properties

final String message #

final String message

final StackTrace stackTrace #

inherited from Error
external StackTrace get stackTrace;

Methods

dynamic toString() #

Returns a string representation of this object.

docs inherited from Object
toString() => message;