fromGraphQLListNullableURLToDartListNullableUrl function

List<Url>? fromGraphQLListNullableURLToDartListNullableUrl(
  1. List<Object?>? v
)

Implementation

List<Url>? fromGraphQLListNullableURLToDartListNullableUrl(List<Object?>? v) =>
    v?.map((e) => fromGraphQLURLToDartUrl(e as String)).toList();