fromGraphQLListChatMembersCursorToDartListChatMembersCursor function

List<ChatMembersCursor> fromGraphQLListChatMembersCursorToDartListChatMembersCursor(
  1. List<Object?> v
)

Implementation

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