fromGraphQLListNullableDateTimeToDartListNullablePreciseDateTime function

List<PreciseDateTime>? fromGraphQLListNullableDateTimeToDartListNullablePreciseDateTime(
  1. List<Object?>? v
)

Implementation

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