FileChangedException class
class FileChangedException implements Exception { final String message; const FileChangedException([this.message = ""]); String toString() => "FileChangedException: $message"; }
Implements
Constructors
Properties
final String message #
final String message
Methods
String toString() #
Returns a string representation of this object.
docs inherited from Object
String toString() => "FileChangedException: $message";