fromGraphQLListNullableChatItemsCursorNullableToDartListNullableChatItemsCursorNullable function

List<ChatItemsCursor?>? fromGraphQLListNullableChatItemsCursorNullableToDartListNullableChatItemsCursorNullable(
  1. List<Object?>? v
)

Implementation

List<ChatItemsCursor?>?
fromGraphQLListNullableChatItemsCursorNullableToDartListNullableChatItemsCursorNullable(
  List<Object?>? v,
) =>
    v
        ?.map(
          (e) =>
              fromGraphQLChatItemsCursorNullableToDartChatItemsCursorNullable(
                e as String?,
              ),
        )
        .toList();