removeAttribute method

  1. @override
Future<bool> removeAttribute(
  1. String attributeName
)
override

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);
}