Dart API ReferencedartdocInternalError

InternalError class

Used to report an unexpected error in the DartDoc tool or the underlying data

class InternalError {
  final String message;
  const InternalError(this.message);
  String toString() => "InternalError: '$message'";
}

Constructors

const InternalError(String message) #

const InternalError(this.message);

Properties

final String message #

final String message;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "InternalError: '$message'";