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