Remove record by id
static Future<void> removeById(String id) async { final list = await getList(); list.removeWhere((e) => e.id == id); await saveList(list); }