fromGraphQLListBlocklistCursorNullableToDartListBlocklistCursorNullable function
Implementation
List<BlocklistCursor?>
fromGraphQLListBlocklistCursorNullableToDartListBlocklistCursorNullable(
List<Object?> v,
) =>
v
.map(
(e) =>
fromGraphQLBlocklistCursorNullableToDartBlocklistCursorNullable(
e as String?,
),
)
.toList();