fromDartListChatIdToGraphQLListChatId function

List<String> fromDartListChatIdToGraphQLListChatId(
  1. List<ChatId> v
)

Implementation

List<String> fromDartListChatIdToGraphQLListChatId(List<ChatId> v) =>
    v.map((e) => fromDartChatIdToGraphQLChatId(e)).toList();