fromGraphQLListIpNullableToDartListIpAddressNullable function

List<IpAddress?> fromGraphQLListIpNullableToDartListIpAddressNullable(
  1. List<Object?> v
)

Implementation

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