fromGraphQLListNullableBlocklistCursorToDartListNullableBlocklistCursor function

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

Implementation

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