Dart Documentationsimple_featuresWKTError

WKTError class

class WKTError implements Error {
 final String message;
 WKTError([this.message=null]);
 String toString() => "WKT format error" + (message != null ? message: "");
}

Implements

Error

Constructors

new WKTError([String message = null]) #

WKTError([this.message=null]);

Properties

final String message #

final String message

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "WKT format error" + (message != null ? message: "");