fromGraphQLListURLNullableToDartListUrlNullable function

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

Implementation

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