DartDynamic class

Constructors

DartDynamic()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

asBool(dynamic value) bool?
asDateTime(dynamic value) DateTime?
asDouble(dynamic value) double?
asException(dynamic value) Exception?
asInt(dynamic value) int?
asIterable<T>(dynamic value) Iterable<T>?
asList<T>(dynamic value) List<T>?
asMap<K, V>(dynamic value) Map<K, V>?
asT<T>(dynamic value, {String method = 'asT'}) → T?