fromGraphQLListDateTimeToDartListPreciseDateTime function

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

Implementation

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