fromGraphQLListNullableDateTimeToDartListNullablePreciseDateTime function
Implementation
List<PreciseDateTime>?
fromGraphQLListNullableDateTimeToDartListNullablePreciseDateTime(
List<Object?>? v,
) =>
v
?.map((e) => fromGraphQLDateTimeToDartPreciseDateTime(e as String))
.toList();