fromDartListBlocklistCursorNullableToGraphQLListBlocklistCursorNullable function

List<String?> fromDartListBlocklistCursorNullableToGraphQLListBlocklistCursorNullable(
  1. List<BlocklistCursor?> v
)

Implementation

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