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