fromGraphQLListUsersCursorToDartListUsersCursor function

List<UsersCursor> fromGraphQLListUsersCursorToDartListUsersCursor(
  1. List<Object?> v
)

Implementation

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