findAll method
Response
findAll()
Implementation
http.Response findAll() {
List<Badge>? badges = _badgeService?.findAll();
return http.Response(jsonEncode(badges), HttpStatus.ok);
}
http.Response findAll() {
List<Badge>? badges = _badgeService?.findAll();
return http.Response(jsonEncode(badges), HttpStatus.ok);
}