fromGraphQLListNullableIpToDartListNullableIpAddress function

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

Implementation

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