deleteById method

Future<void> deleteById(
  1. TPrimaryKey id
)

Implementation

Future<void> deleteById(TPrimaryKey id) async => await transaction(
    (context) async => await context.deleteId<TPrimaryKey>(bean, id));