getAttributes method

  1. @override
Future<Map<String, dynamic>> getAttributes()
override

Retrieves a Map of every attribute currently bound. Keys are attribute names, and values their respective values.

Implementation

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