fromDartListChatContactsCursorNullableToGraphQLListChatContactsCursorNullable function

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

Implementation

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