fromGraphQLListOperationIdNullableToDartListOperationIdNullable function

List<OperationId?> fromGraphQLListOperationIdNullableToDartListOperationIdNullable(
  1. List<Object?> v
)

Implementation

List<OperationId?>
fromGraphQLListOperationIdNullableToDartListOperationIdNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLOperationIdNullableToDartOperationIdNullable(e as String?),
    )
    .toList();