delete method

Future<bool> delete()

Implementation

Future<bool> delete() async {
  var exception = await Database.delete(tableName, _dbKey);
  return (exception == null);
}