fromDartListNullableBlocklistCursorToGraphQLListNullableBlocklistCursor function

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

Implementation

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