fromGraphQLIpNullableToDartIpAddressNullable function

IpAddress? fromGraphQLIpNullableToDartIpAddressNullable(
  1. String? v
)

Implementation

IpAddress? fromGraphQLIpNullableToDartIpAddressNullable(String? v) =>
    v == null ? null : IpAddress(v);