getAttribute method

  1. @override
Future getAttribute(
  1. String attributeName
)
override

Retrieves an attribute previously saved.

attributeName is the name of the attribute.

Implementation

@override
Future<dynamic> getAttribute(String attributeName) async {
  return _platform.getAttribute(
      matchingKey: _matchingKey,
      bucketingKey: _bucketingKey,
      attributeName: attributeName);
}