setAttributes method
Implementation
@override
Future<bool> setAttributes(
{required String matchingKey,
required String? bucketingKey,
required Map<String, dynamic> attributes}) async {
var result = await methodChannel.invokeMethod(
'setAttributes',
_buildParameters(
matchingKey, bucketingKey, {'attributes': attributes}));
if (result is bool) {
return result;
}
return false;
}