fromDartListNullableChatItemsCursorNullableToGraphQLListNullableChatItemsCursorNullable function

List<String?>? fromDartListNullableChatItemsCursorNullableToGraphQLListNullableChatItemsCursorNullable(
  1. List<ChatItemsCursor?>? v
)

Implementation

List<String?>?
fromDartListNullableChatItemsCursorNullableToGraphQLListNullableChatItemsCursorNullable(
  List<ChatItemsCursor?>? v,
) =>
    v
        ?.map(
          (e) =>
              fromDartChatItemsCursorNullableToGraphQLChatItemsCursorNullable(
                e,
              ),
        )
        .toList();