fromDartListUsersCursorToGraphQLListUsersCursor function

List<String> fromDartListUsersCursorToGraphQLListUsersCursor(
  1. List<UsersCursor> v
)

Implementation

List<String> fromDartListUsersCursorToGraphQLListUsersCursor(
  List<UsersCursor> v,
) => v.map((e) => fromDartUsersCursorToGraphQLUsersCursor(e)).toList();