fromGraphQLListNullableUsersCursorToDartListNullableUsersCursor function
Implementation
List<UsersCursor>?
fromGraphQLListNullableUsersCursorToDartListNullableUsersCursor(
List<Object?>? v,
) =>
v
?.map((e) => fromGraphQLUsersCursorToDartUsersCursor(e as String))
.toList();