setAttribute abstract method

Future<bool> setAttribute(
  1. String attributeName,
  2. dynamic value
)

Stores a custom attribute value to be used in all evaluations.

Specify the attribute's name with attributeName, and its value in value.

Returns true if the operation was successful; false otherwise.

Implementation

Future<bool> setAttribute(String attributeName, dynamic value);