fromGraphQLListBlocklistCursorNullableToDartListBlocklistCursorNullable function

List<BlocklistCursor?> fromGraphQLListBlocklistCursorNullableToDartListBlocklistCursorNullable(
  1. List<Object?> v
)

Implementation

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