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