deleteByUniqueKey method

Future<bool> deleteByUniqueKey(
  1. String uniqueKey
)

Implementation

Future<bool> deleteByUniqueKey(String uniqueKey) {
  return deleteByIndex(r'uniqueKey', [uniqueKey]);
}