fromDartListChatItemIdToGraphQLListChatItemId function

List<String> fromDartListChatItemIdToGraphQLListChatItemId(
  1. List<ChatItemId> v
)

Implementation

List<String> fromDartListChatItemIdToGraphQLListChatItemId(
  List<ChatItemId> v,
) => v.map((e) => fromDartChatItemIdToGraphQLChatItemId(e)).toList();