embeds property

List<Embed> get embeds

Implementation

List<Embed> get embeds {
  List<Embed> list = [];
  for (var map in embedList as List) {
    list.add(Embed(map));
  }
  return list;
}