actors property
List<ProfileView>
get
actors
Implementation
List<ProfileView> get actors {
List<ProfileView> list = [];
for (var map in actorList) {
list.add(ProfileView(map));
}
return list;
}