remove method

Future<void> remove(
  1. int id
)

Implementation

Future<void> remove(int id) async {
  final db = _requireDb;
  await db.deleteAccount(id);
  await _onRemoveActive?.call(id);
}