fromDartListChatItemsCursorToGraphQLListChatItemsCursor function

List<String> fromDartListChatItemsCursorToGraphQLListChatItemsCursor(
  1. List<ChatItemsCursor> v
)

Implementation

List<String> fromDartListChatItemsCursorToGraphQLListChatItemsCursor(
  List<ChatItemsCursor> v,
) => v.map((e) => fromDartChatItemsCursorToGraphQLChatItemsCursor(e)).toList();