fromDartListNullableChatContactsCursorNullableToGraphQLListNullableChatContactsCursorNullable function

List<String?>? fromDartListNullableChatContactsCursorNullableToGraphQLListNullableChatContactsCursorNullable(
  1. List<ChatContactsCursor?>? v
)

Implementation

List<String?>?
fromDartListNullableChatContactsCursorNullableToGraphQLListNullableChatContactsCursorNullable(
  List<ChatContactsCursor?>? v,
) => v
    ?.map(
      (e) =>
          fromDartChatContactsCursorNullableToGraphQLChatContactsCursorNullable(
            e,
          ),
    )
    .toList();