findAll method

List<Badge>? findAll()

Implementation

List<Badge>? findAll() {
  return _badgeRepository?.findAllEntities().map((e) => e as Badge).toList();
}