fromDartListIpAddressNullableToGraphQLListIpNullable function

List<String?> fromDartListIpAddressNullableToGraphQLListIpNullable(
  1. List<IpAddress?> v
)

Implementation

List<String?> fromDartListIpAddressNullableToGraphQLListIpNullable(
  List<IpAddress?> v,
) => v.map((e) => fromDartIpAddressNullableToGraphQLIpNullable(e)).toList();