fromDartListOperationCancellationReasonToGraphQLListOperationCancellationReason function
Implementation
List<String>
fromDartListOperationCancellationReasonToGraphQLListOperationCancellationReason(
List<OperationCancellationReason> v,
) => v
.map(
(e) =>
fromDartOperationCancellationReasonToGraphQLOperationCancellationReason(
e,
),
)
.toList();