deleteById method

Future deleteById(
  1. int id
)

Implementation

Future deleteById(int id) async {
  await _collection.deleteById(id);
}