fromGraphQLListOperationNumNullableToDartListOperationNumNullable function
Implementation
List<OperationNum?>
fromGraphQLListOperationNumNullableToDartListOperationNumNullable(
List<Object?> v,
) => v
.map(
(e) =>
fromGraphQLOperationNumNullableToDartOperationNumNullable(e as int?),
)
.toList();