fromGraphQLListOperationCancellationReasonToDartListOperationCancellationReason function
Implementation
List<OperationCancellationReason>
fromGraphQLListOperationCancellationReasonToDartListOperationCancellationReason(
List<Object?> v,
) => v
.map(
(e) =>
fromGraphQLOperationCancellationReasonToDartOperationCancellationReason(
e as String,
),
)
.toList();