fromGraphQLListNullableChatMembersCursorToDartListNullableChatMembersCursor function
Implementation
List<ChatMembersCursor>?
fromGraphQLListNullableChatMembersCursorToDartListNullableChatMembersCursor(
List<Object?>? v,
) => v
?.map(
(e) => fromGraphQLChatMembersCursorToDartChatMembersCursor(e as String),
)
.toList();