fromDartListChatMembersCursorToGraphQLListChatMembersCursor function
Implementation
List<String> fromDartListChatMembersCursorToGraphQLListChatMembersCursor(
List<ChatMembersCursor> v,
) => v
.map((e) => fromDartChatMembersCursorToGraphQLChatMembersCursor(e))
.toList();