fromDartListChatContactsCursorToGraphQLListChatContactsCursor function

List<String> fromDartListChatContactsCursorToGraphQLListChatContactsCursor(
  1. List<ChatContactsCursor> v
)

Implementation

List<String> fromDartListChatContactsCursorToGraphQLListChatContactsCursor(
  List<ChatContactsCursor> v,
) => v
    .map((e) => fromDartChatContactsCursorToGraphQLChatContactsCursor(e))
    .toList();