removeAttribute method
Removes a specific attribute from storage.
Specify the attribute to be removed using attributeName
.
Returns true
if the operation was successful; false otherwise.
Implementation
@override
Future<bool> removeAttribute(String attributeName) async {
return _platform.removeAttribute(
matchingKey: _matchingKey,
bucketingKey: _bucketingKey,
attributeName: attributeName);
}