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