Dart DocumentationdormLazy

Lazy class

class Lazy {
 
 const Lazy();
 
 String toString() => 'lazy';
 
}

Constructors

const Lazy() #

const Lazy();

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => 'lazy';