fromIds static method

List<FeedId>? fromIds(
  1. List? ids
)

Takes a list of feed ids of type List<String> and returns a list of feed ids of type List<FeedId>

Implementation

static List<FeedId>? fromIds(List? ids) =>
    ids?.map((e) => FeedId.id(e)).toList(growable: false);