fromDartListBlocklistCursorNullableToGraphQLListBlocklistCursorNullable function
- List<
BlocklistCursor?> v
Implementation
List<String?>
fromDartListBlocklistCursorNullableToGraphQLListBlocklistCursorNullable(
List<BlocklistCursor?> v,
) => v
.map(
(e) => fromDartBlocklistCursorNullableToGraphQLBlocklistCursorNullable(e),
)
.toList();