removeById method

Future<bool> removeById(
  1. String id
)

Implementation

Future<bool> removeById(String id) async {
  await _collection.doc(id).delete();
  return true;
}