BatchUserAttribute class

Object representing a user attribute. An attribute is represented by it's type, which maches the one you've used when setting the attribute, and its value.

You can get the attribute using the generic getter, or use the typed ones that will cast the value or return null if the type doesn't match.

Constructors

BatchUserAttribute({required BatchUserAttributeType type, required dynamic value})

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type BatchUserAttributeType
final
value → dynamic
final

Methods

getBoolValue() bool?
getDateValue() DateTime?
getDoubleValue() double?
getIntegerValue() int?
getStringValue() String?
getUriValue() Uri?
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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