fromDartListNullableUrlToGraphQLListNullableURL function

List<String>? fromDartListNullableUrlToGraphQLListNullableURL(
  1. List<Url>? v
)

Implementation

List<String>? fromDartListNullableUrlToGraphQLListNullableURL(List<Url>? v) =>
    v?.map((e) => fromDartUrlToGraphQLURL(e)).toList();