Dart DocumentationdormRef

Ref class

class Ref {
 
 final String path;
 
 const Ref(this.path);
 
 String toString() => path;
 
}

Constructors

const Ref(String path) #

const Ref(this.path);

Properties

final String path #

final String path

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => path;