delete method

  1. @override
Future<bool> delete(
  1. String key, {
  2. String? sharedWith,
  3. bool isPublic = false,
})
override

delete

Implementation

@override
Future<bool> delete(String key,
    {String? sharedWith, bool isPublic = false}) async {
  var builder = DeleteVerbBuilder()
    ..isPublic = isPublic
    ..sharedWith = sharedWith
    ..atKey = key
    ..sharedBy = _currentAtSign;
  var deleteResult = await executeVerb(builder);
  return deleteResult != null; //replace with call back
}