fromGraphQLListIpNullableToDartListIpAddressNullable function
Implementation
List<IpAddress?> fromGraphQLListIpNullableToDartListIpAddressNullable(
List<Object?> v,
) =>
v
.map((e) => fromGraphQLIpNullableToDartIpAddressNullable(e as String?))
.toList();