delete method

Future<bool> delete(
  1. int id
)

Implementation

Future<bool> delete(int id) async {
  return await adapter.delete(model.getTableName(), id);
}