toIds static method

List<String>? toIds(
  1. List<FeedId>? feeds
)

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

Implementation

static List<String>? toIds(List<FeedId>? feeds) =>
    feeds?.map((e) => e.toString()).toList(growable: false);